How to setup angular in windows?

Hello friends in this article i will show you how to setup angular. So read this article till the end.

Step1: install latest version of nodejs from https://nodejs.org/en/download.

Step2: Install latest version of AngularCLI: npm install -g @angular/cli

type node -v to check node version in cmd.

type ng -v to check angular version in cmd.

step3: Install VisualStudio Code Editor from  https://code.visualstudio.com/download.

step4: Now type ng new AngularCrud --skip-tests true to create new angular project in AngularCrud folder in C drive you can also choose any other drive as per your wish .

step 5: Now type cd AngularCrud to go in to the AngularCrud Folder. 

step 6: Now type Code . to open the project in  VisualStudio Code Editor.

Now you have sucessfully Installed and setup angular in your computer.

step 7: To run your project in default browser type ng serve -o  in cmd.

Comments

Popular posts from this blog

how to save images with angular nodejs

How to restrict your logged In page in angular (authentication guard)

How to notify about data update to other component.