What do you need to do in order to be able to run Angular CLI on your computer?
Experience Level: Junior
Tags: AngularAngular CLI
Answer
In order to run the Angular CLI, you need to install it first.
To install it, follow these steps:
1) Install Node.js
2) Install npm
3) Execute the following command from the command line:
npm install -g @angular/cli
4) Verify the Angular CLI is successfuly installed by running ng from the command line
ng
Related Angular CLI job interview questions
Using Anular CLI, how do you create a new feature module that will be automatically imported to your main app module?
AngularAngular CLI JuniorHow do you create new application using Angular CLI?
AngularAngular CLI JuniorWhat is linting and how do you run linting for your Angular application unsing Angular CLI?
AngularAngular CLI JuniorHow do you run an Angular application on your local computer using Angular CLI?
AngularAngular CLI JuniorHow do you find out what version of Angular CLI do you have installed?
AngularAngular CLI Junior