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