1 min read

Create a Angular application Part 1 – Setup the development environment

Let’s follow the official documentation here.

You need Node.JS so head over to Node.js here and download the javascript runtime.

Angular depends on NPM for many operations which is installed by default when installing Node. Verify by typing below in a terminal.

npm -v

Now finally install the Angular CLI using NPM.

npm install -g @angular/cli

Great! Now verify that you have it installed.

npm list -global

In the next post we’ll create our first Angular project!

Leave a Reply