setup existing angular project code example
Example 1: angular install
npm install -g @angular/cli
Example 2: angular cli
/* @latest is optional */
npm install -g @angular/cli@latest
Example 3: setup new angular project
npm install -g @angular/cli
ng new project-name
cd project-name
ng serve