Horje
install angular app Code Example
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
*/
Source: angular.io
install angular app
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




Shell

Related
pwd in cmd Code Example pwd in cmd Code Example
find text in all files linux Code Example find text in all files linux Code Example
find text pattern in file linux Code Example find text pattern in file linux Code Example
rename laravel project Code Example rename laravel project Code Example
kubectl get pods Code Example kubectl get pods Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
15