Useful angular commands
Create a new angular project
ng new
Update application and it’s dependencies
ng update
For development, start the app at localhost:4200
ng serve --open
Generate new component
ng generate component [component name]
Install in-memory Web API
npm install angular-in-memory-web-api --save