Skip to content

Latest commit

 

History

History
39 lines (34 loc) · 650 Bytes

angular.md

File metadata and controls

39 lines (34 loc) · 650 Bytes

Angular commands

Project

  • Create a project
ng new name-project
  • Open a project
cd name-project
ng serve --open

Component

  • Create a component
ng generate component name-component

Service

  • Create a service
ng generate service name-service

Module

  • Create a module
ng generate module name-module
  • Put the file in src/app instead of its own folder
ng generate module name-module --flat
  • Tells the CLI to register it in the imports array of the AppModule
ng generate module name-module --module=app