MEAN Stack
MEAN Stack
MEAN Stack
MEAN Stack
Install NodeJs and Angular CLI
·
How to Install NodeJs and Angular CLI
Steps for installing NodeJS
- Open https://nodejs.org/
- Download the LTS version and install it. ( *LTS – Long term support)
- After installation, opens the “NodeJS” command prompt.
- Check the installed version by this command:
# node -v - Check the version of NPM
# npm -v
Install TypeScript
- Type the following command to install Typescript:
# npm install -g typescript
Install Angular CLI
- Type the following command to install AngularCLI:
# npm install -g @angular/cli - Check the version of installed AngularCLI by this command:
# ng v
Ready to Solve Your Most Complex Technical Challenges?
Our senior advisors are ready to help you navigate the ever-evolving technology landscape with precision and expertise.
Schedule a ConsultationRelated Articles
Create a project in Angular
Type following command to create a new project: # ng new <PROJECT-NAME> It will ask “Would you like to add Angular routing?…
Firebase hosting setup for Angular app
1. Firstly install node.js on your machine. # sudo apt-get install nodejs # sudo apt-get install npm 2. To install the firebase…
Create PWA for Angular6 Application
Install latest version of Angular CLI using this command: # npm install -g @angular/cli OR # npm install -g @angular/cli@latest Create a…