部署和切换流程
- Install & Update Script
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.2/install.sh | bash
- Close and reopen the terminal for system to recognize the changes or run the command
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")
source ~/.bashrc
- Verify if you have successfully installed NVM
nvm --version
- Now you can check for newly available releases with
nvm ls-remote
- To install the latest version, use the
nvm
command with the specific Node.js version
nvm install 14.18.0
nvm install 12.14.0
- How to switch version
nvm use 12
node -v
nvm use 14
node -v
nvm常用命令
# 列出所有已安装的node版本
nvm ls
# 列出所有远程服务器的版本(官方node version list)
nvm ls-remote
# 列出所有已安装的node版本
nvm list
# 显示所有可下载的版本
nvm list available
# 安装最新版node
nvm install stable
# 安装指定版本node
nvm install [node版本号]
# 删除已安装的指定版本
nvm uninstall [node版本号]
# 切换到指定版本node
nvm use [node版本号]
# 当前node版本
nvm current
# 给不同的版本号添加别名
nvm alias [别名] [node版本号]
# 删除已定义的别名
nvm unalias [别名]
# 设置默认版本
nvm alias default [node版本号]
nvm与npm替换镜像源
linux使用nvm安装node时特别慢,因为默认的源是国外的,可以改为国内的地址,设置一个变量即可。
# 配置淘宝的npm源
NVM_NODEJS_ORG_MIRROR=https://npm.taobao.org/mirrors/node
npm config set registry https://registry.npm.taobao.org
# 检查
npm config get registry