nvm
安装
使用yum安装node,最新只能安装到0.12.X 版本,而自定义安装二进制的又有点麻烦,所以用nvm安装 (如果命令下载不下来 可以手动下载到服务器上执行)。
nvm是一款运行在linxu系统上的node版本管理平台(以下为linux版本 不过目前也出了windows版本,具体自己查),安装完成后,记得重新打开 终端生效。
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
常用命令
nvm list #查看已经安装的node版本
nvm ls-remote #查看所有可用node版本
nvm install --lts #安装最新稳定版
nvm install v21.0.0 #安装指定版本
nvm use v21.0.0 #当前使用的版本切换
配置代理
如果 你执行安装node命令卡主 如 nvm install v21.0.0,说明你需要代理。
export NVM_NODEJS_ORG_MIRROR=https://mirrors.tuna.tsinghua.edu.cn/nodejs-release/
npm配置代理
npm config set registry https://registry.npmmirror.com
yarn配置代理
yarn config set registry https://registry.npmmirror.com
标签:node,版本,install,https,使用,nvm,安装
From: https://www.cnblogs.com/dingshaohua/p/18408263