Sometimes you want to create a simple Angular app without all the ceremony. The Angular CLI makes that easy. Just use the –minimal flag.
ng new my-app --minimal
An app created with the –minimal flag:
- does not include any tests
- HTML is inlined
- CSS is inlined
- Components contain everything in one file
Perfect for getting started and simple examples.