Getting Started
Starting a new angular project
Install the Angular CLI
$ npm install -g @angular/cliCreate a workspace and initial application
$ ng new {project name}Run the application
cd { project name }
ng serve --openLast updated