Prerequisites & Installation

Prerequisites & Installation

ยท

1 min read

Table of contents

Prerequisites

Before you study AngularJS, you should have a basic understanding of:

Assuming you have a basic Angular knowledge lets go ahead, else please have a quick look at a crash course and get back here.

Installation

Assuming you already have a good IDE (am using VS Code here)! You will need Node.js & NPM, you can download from node based on your OS. Once installed you can confirm by opening a terminal and typing below command.

node -v
npm -v

You will get a similar output with the version you have Capture.PNG

Great! you did it.

Now lets install Angular CLI & lets confirm by below command's

npm install -g @angular/cli
ng --version

You will see similar output

Capture.PNG

That's it ๐Ÿ˜‡ You did a good job

NEXT?

ย