From the course: Angular: Workflows

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Installing the CLI

Installing the CLI - Angular Tutorial

From the course: Angular: Workflows

Start my 1-month free trial

Installing the CLI

- [Instructor] You will need to first globally install the Angular CLI in your system. The only requirements the CLI has is Node along with NPM. We will be working with the current LTS which is 8.11.1 at the time of this recording, and you will need at least version five of NPM which comes bundled with Node. You can also use NVM, the Node Version Manager, which allows you to manage multiple versions of Node. Let's verify both versions in the command line. Can type in node dash dash version and npm dash dash version. Let's install the Angular CLI now. We will be working with version six of the Angular CLI. Npm install -g for global @angular/cli. This will go ahead and fetch the necessary dependencies from NPM in order to install the tool globally on your machine. It will take a few moments. Once that is done let's verify that it was installed on our system. We can do that by typing ng dash dash version. We see version 6.0.0 along with the versions of its dependencies. Great, we are now…

Contents