Saturday, October 14, 2023

Angular CLI [Command Line Interface]

 *Angular CLI is a command line tool to develop,manage,unit test and production build of

 Angular project easy way

Angular CLI will make development easy and faster by reducing lot of manual coding

Angular CLI will follow all the naming conventions of angular

 Example:
   component file---> <name>.component.ts
   module  file  ---> <name>.module.ts

Angular cli can be installed using node package
 [goto command window]
   >npm i @angular/cli -g

   >ng version
    Angular CLI 13.0.3

Angular CLI is nothing but "ng" command,this provides set of options
  1.new   option
  2.serve option
  3.generate option
  4.test  option
  5.build option
  6.lint  option

No comments:

Post a Comment

Thank you for visiting my blog

Kubernetes

Prerequisites We assume anyone who wants to understand Kubernetes should have an understating of how the Docker works, how the Docker images...