# Angular Step By Step
Hello Techies,
In this post i am going to guide you to install Angular and create and run your first app. Please follow bellow steps..
Step 1 (Node NPM Installation)
Node Js (NPM) should be installed on system. So for installation of Node Js follow bellow steps.
- Open https://nodejs.org/en .
- Download stable Version (LTS) of Node js.
- After complete the installation open CMD and check the version.
Step : 2 (Install Angular by NPM)
- Type "npm install -g @angular/cli "
2. Select folder where you are going to create Angular Project.
3. Type ng new 'your app-name'EX: ng new my-dream-app
- Type : "cd my-dream-app" to select project which is created.
- Now Type "ng serve" to run the project. (It will be run on "4200" Port)
- now open browser and type http://localhost:4200/
- Congratulation your project run successfully.

You can see all the files related to Angular and npm available in your created directory.
Angular Step By Step Installation Process
Reviewed by Ashwani
on
September 09, 2019
Rating:
