今天要介绍一个好用的nodejs版本管理工具nvm
一 windows安装nvm
1.访问 nvm-windows GitHub 页面。
如果你github访问不好用,也可以去gitee等国内仓库下载
2.下载最新版本的 nvm-setup.zip 文件。
3.解压下载的 nvm-setup.zip 文件,然后运行 nvm-setup.exe 安装程序。
4.按照提示完成安装。
二 nvm常用命令
1.查看安装路径
$ command -v nvm
/c/Users/Administrator/AppData/Roaming/nvm/nvm
2.查看版本
$ nvm -v
1.1.12
3.安装特定版本的 Node.js
nvm install 16.20.2
4.列出已安装的 Node.js 版
$ nvm list
20.11.1
* 16.20.2 (Currently using 64-bit executable)
或
$ nvm ls
20.11.1
* 16.20.2 (Currently using 64-bit executable)
5.切换 Node.js 版本并验证
$ nvm use 20.11.1
Now using node v20.11.1 (64-bit)
$ node -v
v20.11.1
6.卸载特定版本的 Node.js
nvm uninstall <version>
7.设置默认 Node.js 版本
nvm alias default <version>