--flat
-> generate in top level of project?--module=[module]
-> the declaring module--dry-run
-> show files to be created without creating them
ng generate component [name of component]
- ex (subfolder):
ng g c core/footer
--style=[css|scss|sass|less|styl]
--export
-> declaring module will export this component
ng generate module [name of module]
* --routing
-> creates a routing module
ng new [project name] --routing
-> create new projectng serve --open --port [port #]
-> serve app using dev serverng lint
-> runs tslint and consoles out errorsng test --code-coverage
-> runs karma testsng build [project name]
-> production build to thedist/
directory