Set up the Development Environment
You need to set up your development environment before you can start developing Angular Applications.
Last updated
Was this helpful?
You need to set up your development environment before you can start developing Angular Applications.
Last updated
Was this helpful?
Install if they are not already on your machine.
Verify that you are running at least node 6.9.x and npm 3.x.x by running node -v and npm -v in a terminal/console window. Older versions produce errors, but newer versions are fine.
Then install the globally by running:
The Angular Command Line Interface (CLI) is a tool to initialize, develop, scaffold and maintain Angular applications. For more info about the Angular CLI visit
Go to the folder you downloaded the project files, unzip it and open a terminal in that folder.
Then run npm install
to install all the project dependencies.