1. 安装
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
注意:如果不能用去github上找
github地地址:https://github.com/nvm-sh/nvm#installing-and-updating
2. nvm命令
- 查看远程node版本
nvm ls-remote
- 列出所有安装的版本
nvm ls
- 安装最新稳定版 node
nvm install stable
- 安装指定版本
nvm install <version>
- 删除已安装的指定版本
nvm uninstall <version>
- 切换使用指定的版本node
nvm use <version>
- 改变默认的版本:
nvm alias default v4.3.0(指定版本号)
扩展
- npm配置仓库
npm config set registry https://registry.npm.taobao.org
检验配置是否成功:
npm config get registry
- npm安装淘宝镜像cnpm
npm install -g cnpm --registry=https://registry.npm.taobao.org