1) To get the npm version, npm -v 2) To get the node version, node -v 3) To get the Angular version, ng v 4) To get the Jasmine version, jasmine -v 5) To get the Karma version, karma --version 6) To install Angular CLI, npm install @angular/cli -g npm install @angular/cli 7) To install the next version of Angular CLI, v npm install @angular/cli@next 8) To get help in the terminal, ng help 9) To create a new project in Angular, ng new project-name 10) To skip external dependencies while creating a new project, ng new project-name --skip-install 11) To run the Angular project, ng serve (or) npm start (or) ng serve --force 12) Dry Run, ng new project-name --dry-run 13) To create a new component in the Angular Project, ng generate component component-
Comments
Post a Comment