Angular Snippets

Create minimal Angular project for researching purpose

angular

Do you want to create a new Angular project with bare minimum of files for researching Angular framework?

Just use this command line and you are good to go.

ng new learn-pipe --minimal --defaults
  • --minimal is the short-hand for --inline-template --inline-style --skip-tests
  • --defaults is the short-hand for --style=css --router=false
create minimal angular project
Back to snippets