Skip to main content
Steps for install angular on your machine
- Install Node Js from https://nodejs.org/en/. after install node check installation is successful run command on CMD node -v show the node version.
- Open Command Prompt Run as administrator and run command
" npm install -g @angular/cli "
when install angular cli shows some error and warning ignore them.
- After install the angular cli create the project in the C Drive when open command prompt run as administrator show the current path like this "C:\Windows\system32>" go to the root run "cd/" command then enter go to the root "C:".
- Run command " ng new project-name " like this "ng new angularApp " press enter.
- go to our project folder "cd angularApp" press enter.
- run command " ng serve -o" this command run local server and shows your app on your browser http://localhost:4200.
- Extra command "https://github.com/angular/angular-cli/wiki"
Comments
Post a Comment