December 2017
Beginner
372 pages
10h 32m
English
Before we start using Angular CLI, we need to install it from npm. Angular CLI is a node module, hence to install CLI we need node.
If you don't have Node.js on your machine, you can easily install it from the official Node.js website, https://nodejs.org/en/.
You can confirm that the node has been installed properly by using the following command:
node -v
This command will output the current version of node installed.
Once you have Node.js, next you need to run following command to install the Angular CLI:
npm install -g @angular/cli
This command will install the Angular CLI globally (based on the -g flag) on our machine. Once installed, like Node.js, you can check the version of Angular CLI installed on your machine ...
Read now
Unlock full access