Linux安装node和升级node
目录
下载 Node
进入 Node 最新版下载 https://nodejs.org/en/download/current/
例:https://nodejs.org/dist/v16.17.1/node-v16.17.1-linux-x64.tar.xz
安装 Node
|
|
加速 npm
- 使用淘宝的 npm
npm install cnpm -g --registry=https://registry.npm.taobao.org
- 使用 cnpm 去代替 npm 来执行,比如 cnpm install xxx
- 不想安装 cnpm,也可以每次使用
npm install xxx --registry=https://registry.npm.taobao.org
直接安装
升级 Node
- 清除缓存信息
sudo npm cache clean -f
- 下载 node 安装包
sudo npm install -g n
- 升级到 nodejs 最新稳定版本
sudo n stable
- 查看当前版本
node -v