Create a project with angular-cli

Posted by Xavier Bouclet on January 07, 2018 · 1 min read

Angular/cli can be used to create an angular project with the latest module versions. In the first place, we have to install angular/cli.

npm install -g @angular/cli

In case angular/cli is already installed, it can be updated using the following command.

npm install -g @angular/cli@latest

In case npm is not globally installed use this command.

npm i -g npm

To create the project use ng new.

ng new myproject

In order to launch the project, we have to use the ng serve command inside the myproject folder.

cd myproject
ng serve

Et voilà!

myproject app