Generate a new Angular project
1 | ng new my-app |
Generate a new empty workspace
1 | ng new my-workspace --create-application=false |
Generate a new application in the workspace
1 | cd my-workspace |
Install package for a specific project
When you working on a workspace with multiple projects, you can install a package for a specific project.
1 | ng add @angular-architects/module-federation --project shell |