angular ng cli code example

Example 1: angular cli

/* @latest is optional  */ 
npm install -g @angular/cli@latest

Example 2: setup new angular project

/*
Setting up new angular project and run on browser
*/
npm install -g @angular/cli
ng new project-name
cd project-name
ng serve

/*
I hope it will help you.
Namaste
*/

Example 3: install angular cli

npm install -g @angular/cli    //make sure you have node/npm installed 
ng new <appname>        //  eg:  ng new my-app
cd <appname>       // cd my-app
ng serve

Example 4: angular cli

ng new my-first-project
ng serve