linux版本
- 安装
curl -o- https://gitee.com/Annlix/nvm-sh_nvm/raw/master/install.sh|bash
- 查看nodejs版本
nvm ls-remote
- 安装指定版本
nvm install v16.18.1
- 查看已装版本
nvm list
- 切换指定版本
nvm run node v12.20.2
- 指定默认版本
nvm alias default v12.20.2
- 卸载指定版本
nvm uninstall v12.20.2
- 配置国内镜像源
npm config set registry https://registry.npmmirror.com
# 或者npm install -g cnpm --registry=https://registry.npmmirror.com
- 安装yarn,并行nodejs包管理工具
npm install yarn -g
标签:npm,版本,nodejs,管理工具,registry,install,nvm
From: https://www.cnblogs.com/aric2016/p/16910209.html