Getting started with angular 5 (Part1)


Before working on angular 5 application, we have to make the necessary environment setup in our system.

These are the following simple steps to make the angular 5 working environment in our system.

Step 1: Install the latest Nodejs and npm in your machine

https://nodejs.org/en/download/

Step 2: Install the Visual studio code from

https://code.visualstudio.com/download

Step 3: Go to Visual studio code terminal and install npm install -g @angular/cli

Step 4: Go to the desire folder path using visual studio code terminal and create the angular 5 application like

ng new my-app

Step 5: Go to the gven the folder like this

cd my-app
ng serve –open

Step 6: Your application will be open in browser, Now you are ready to play with angular 5 application.