Not inclduing those that are commonly in the package.json file
Create new angular application
ng new project-name --routing --style scss
ng new angular-client --routing --style scss
Create module with routing
ng generate module home --route home --module app
Create shared module and add to app module
ng generate module shared --module app
Generates the service seo
Generates the customer class inside of the models folder
If the folder models doesn’t exist the CLI will create it
The same as ng g cl models/customer but for creating an interface
Generates the pipe init-caps inside of the shared folder
Generates the search-box directive
ng generate component home
ng generate component about
ng generate component contact
Install dependencies AND can update/create configs
npm install -g @angular/cli
Check the current installed Angular CLI version
Turn off analytics gathering
Not turned on by default anymore?
ng config --global cli.analyticsSharing undefined
ng analytics project off
ng analytics off