Angular Installation
Step 1
Download the node.js latest version in (Node.js) and install the node.js installer. Node.js is a javascript based environment which can create a web server.
Step 2
Install the angular-cli, It will make easy to create a web application in single page transition.
npm install -g @angular/cli
Step 3
ng new is used to create an angular project. It will create a web application with a single page transition.
ng new project-name
Step 4
ng serve is used to test the angular project. we can easily test the app development locally. ng lint makes the code clean and increases app performance.
cd project-nameng serveng lint
0 Comments