Nodejs 安装
1. Ubuntu下安装
sudo apt-get install python-software-properties
sudo apt-get install nodejs nodejs-legacy sudo apt-get install npm npm install --save n
// n 的使用
sudo n latest
sudo n stable
sudo n lts
// npm 升级
sudo npm install npm@latest -g
2. 如果在Ubuntu 下安装出现 404时
sudo apt-get clean sudo apt-get update
3. 修改镜像
// 临时使用 npm --registry https://registry.npm.taobao.org install express // 永久使用 npm config set registry https://registry.npm.taobao.org // 通过 cnpm 使用 npm install -g cnpm --registry=https://registry.npm.taobao.org