In this post I will explain how to setup the environment for Angular by listing the steps I have setup my first Angular project with Visual Studio Code. I start with a sample project downloaded from GitHub project 
 Angular-GettingStarted by Deborah Kurata. Lets follow these steps:
- 
  Download and install Visual Studio Code from https://code.visualstudio.com/
- 
   In order to install required packages we will use npm (Node Package Manager). So download and installnpmfromhttps://nodejs.org/en/download/.
- 
  Download and extract the project from github.
- 
   From VS Code terminal, check if you have successfully installed npmby issuing simple command likenpm -v. It will give you installednpmversion number, like6.4.1
-  
   Issue the following command from VS Code terminal to install Angular CLI.
   npm install -g @angular/cliAfter installing Angular CLI we have to setup following two directory paths in EnvironmentPATHvariable.- C:\Users\YOUR-USER\AppData\Roaming\npm
- C:\Users\YOUR-USER\AppData\Roaming\npm\node_modules\@angular\cli\bin
 
- 
  Run following command to install dev dependency package introduced in Angular 6.0
  npm install --save-dev @angular-devkit/build-angular 
- 
   Now you can run the project by issuing the npm startcommand.npm startAfter successful compilation, it will open the website with the default browser window on localhost.
We have setup the development environment for Angular. I hope this helps some of you who get stuck with a similar problem.
 
