Angular for beginners. Enviroment setup for Angular.

I want to discussed with you, how to start first project in Angular. step by step i will expalain you how we satart angular first time.

Steps:- 1. Install Node 8.x or later NPM 5.x or later
    2. Install Angular CLI 6 or later
        npm install -g @angular/cli [Installing first time]
        npm install -g @angular/cli@latest [For upgrade]
   3. For best coding editor tool Visual Studio Code.
   4. Open command line.
   5. Create the new project.
       ng new angularProject -d
       ng new angularProject --skip-tests
       Project is successfull created. Now run the project.
  6. Go to the project directive.
  7. ng serve -open
  8. Project is show on browser.

Comments