EN
Angular 7 - init new project from command line
6
points
Single line:
ng new our-app-name-here
It will initialize entire angular 7 app.
If we don't have angular-cli installed:
npm install -g @angular/cli
ng new my-dream-app
cd my-dream-app
ng serve
More: