Installing
-
2. Installing NodeJS
How to Install NodeJS on GNU/Linux:
Then Update the npm Package Manager:
sudo npm install npm@latest -g
-
3. Installing AngularJs
Now to Install the Latest Angular Cli on Ubuntu.
Run:
sudo npm install -g @angular/cli
Then to Check the Angular.js Version:
ng version
Again to Search for other available Extensions:
npm search @angular
Last, to Install a specific Release, E.g. 14.0.0:
sudo npm install -g @angular/cli@14.0.0
Contents