Window上使用NVM进行管理node版本
Contents
1.下载nvm
github最新版本下载: https://github.com/coreybutler/nvm-windows/releases
2.nvm的使用方法
1.安装最新版node:
nvm install latest
2.安装指定版本node:
nvm install 14.15.0
3.查看已安装的node版本:
nvm ls / nvm list
4.使用指定版本node:
nvm use 14.15.0
不指定具体版本即为现有的最新版本nvm use 14
6.卸载指定版本node:
nvm uninstall 14.15.0