create angular project using cli code example
Example 1: 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 2: 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 3: create angular project cli version 8
npm install @angular/[email protected]
ng new angular2app
npm install @angular/[email protected]
ng new angular4app
npm install @angular/[email protected]
ng new angular5app
npm install @angular/[email protected]
ng new angular6app
npm install @angular/[email protected]
ng new angular8app
npm install @angular/[email protected]
ng new angular8app
npm install @angular/[email protected]
ng new Angular9App
Example 4: angular new project
ng new project_name
Example 5: ng new project
content_copy
ng new angular-tour-of-heroes