Creating of new angular projects

1.Installing of angular

npm install -g @angular/cli 

2.Creating of new projects

ng new my-first-app –no-strict –standalone false –routing false

3.creating of routing module

npm run module app-routing –flat –module=app

4.Creating of Environments files

npm run ng g environments


5.Creating of API- Service files

npm run ng g service api-service

6.creating of new Components

npm run ng g c Home