Installing Node.js & NPM on Ubuntu
2021-02-17 01:20
标签:raw update shel because package opera necessary ble rar Node.js is a platform for building server side applications and command line tools using JavaScript. In this post, we‘ll be looking at how to install Node.js 12, Node.js 11 and Node.js 10 LTS in our Ubuntu 18.04 system. Node.js makes use of NPM to install and manage packages which will be also installed when you install Node. Angular is a frontend client-side JS framework so it‘s not based on Node.js which is a server-side platform for building web apps but you will often need to install Node.js in your Angular development environment because Angular CLI, the official tool for generating and working with Angular projects is built on top of Node. Node.js is required for Angular development but it‘s not necessary in production after your build your Angular project which will produce plain JavaScript files that can be executed by a web browser. Nowadays, modern frameworks and libraries like Angular, React or Vue all have some sort of a CLI or Command-Line Interface that makes it easy to generate projects that can be served locally without much configurations or particularly dealing with complex build tools like Webpack. Besides being a server-side platform, Node has also emerged as a convenient platform for building Command Line Interfaces thanks to its rich package ecosystem that contains over 900000 packages in the npm registry. Angular CLI is the official command-line interface tool for Angular development that you use to initialize, develop, scaffold, and maintain Angular applications. Since, it‘s built on top of Node.js, you can install it from NPM using the following command after you install Node.js on your operating system. You can install Node 12 LTS using the official PPA, so you don‘t need add anything except running the following command in your terminal: The command will also run the the apt update command for you to update your system packages. Next, run the following command: You should have Node v12.16.3 and NPM v6.14.4 installed on your system. You can also use NVM for installing Node.js on your Ubuntu system. NVM stands for Node Version Manager and it‘s simply a POSIX-compliant bash script for installing and managing multiple active Node.js versions. Open a terminal and start by installing the script using either cURL or wget: Next, you can run the following command to list the available Node versions: Next, you can choose a specific version and install it using the following command: Note: If you‘re using zsh, please add the following lines to the end of You can simply head over to the official website and download the required binary for your system. There are binaries for Linux/Ubuntu, macOS and Windows both for 64bit and 32bit processors. Installing Node.js & NPM on Ubuntu 标签:raw update shel because package opera necessary ble rar 原文地址:https://www.cnblogs.com/matt1985/p/12962007.htmlWhy do we use Node.js for Angular?
What is the Angular CLI?
$ npm install -g @angular/cli
How to install Node.js and NPM on Ubuntu?
$ curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
$ sudo apt-get install -y nodejs
Installing Node.js using NVM
$ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.2/install.sh | bash
$ nvm ls-remote
$ nvm install 12.16.3
~/.zshrc
file. This solution also works on ~/.bashrc
if you‘re using bash.# add below lines to the end of your ~/.zshrc or ~/.bashrc file
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
export PATH=$HOME/.nvm/versions/node/v12.16.3/bin:$PATH
Installing Node.js from the official website
上一篇:js事件循环运行机制
下一篇:Web前端:2、盒模型的组成
文章标题:Installing Node.js & NPM on Ubuntu
文章链接:http://soscw.com/index.php/essay/56346.html