Technology

Angular CLI Commands

For Creating angular application via CLI => ng new myApp


Generate flat component with module and spec, ts, scss and html => ng g c home


Generate module with routing file inside folder => ng g m home –routing


Generate flat module with routing file without folder => ng g m home –routing –flat


Creatting flat directive with spec file => ng g d myNgIf


Creating flat service with spec file => ng g s home


Flat generate interface => ng g i home


Generate module inside folder => ng g m home


Generate flat pipe with spec => ng g p home


Generate flat class with spec => ng g class home


Generate flat enum => ng g e home

Create library inside projects folder in angular app => ng g library home


Setup serviceworker in app and update module in app.module
CREATE ngsw-config.json (585 bytes)
UPDATE angular.json (4640 bytes)
UPDATE package.json (1447 bytes)
UPDATE src/app/app.module.ts (678 bytes)”

=> ng g serviceworker


“setup webworker in application
? What name would you like to use for the worker? homeapp
CREATE tsconfig.worker.json (212 bytes)
CREATE src/app/homeapp.worker.ts (157 bytes)
UPDATE tsconfig.app.json (236 bytes)
UPDATE angular.json (4735 bytes)”

=> ng g webworker


Generate guard with spec => ng g gaurd home


Generate guard with spec => ng g g AlwaysAuth


Option for skip spec file => –skipTests=true|false


Build dist for production version, run from anywhere in app => ng build


Build dist and gzip in prod mode => ng build –prod –aot


Creates the local version of project with live reload server => ng serve


Serve with different port number => ng serve -p 8080


Know other commands which is available => ng help


Check version of angular => ng version


Check linting in your app => ng lint