- Single char alternation (e.g. a|b|c|d) in a RegExp can be simplified to use a character class ([abcd]) instead. This usually also provides slightly better matching performance. - Character escapes that are replaceable with the unescaped character without a change in meaning. Inside the square brackets of a character class, many escapes are unnecessary that would be necessary outside of a character class. For example the regex [\.] is identical to [.] - If several qualified expressions occur after the qualifier having been checked for nullable, they can be replaced with optional chaining
3.5 KiB
3.5 KiB
Documentation
Courses
| Scale React Development with Nx | Nx Workspaces | Advanced Nx Workspaces |
|
|
|
|
Nx Demo & Tutorial Videos
-
Group all your stories into a single viewable Storybook with Nx
-
Nx Console - A Must-Have Visual Studio Code Extension for Angular Developers
-
Setting up distributed caching using Nx Cloud, @nrwl/nx-cloud
Books and Blogs
-
High Quality React apps with Nx & Cypress (April 2020)
-
Shell Library patterns with Nx and Monorepo Architectures (March 2020)
-
Tiny Angular application projects in Nx workspaces (March 2020)
Additional Resources
-
nx-examples repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.


