1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| nvm list // 显示已安装的版本(同 nvm list installed) nvm list installed // 显示已安装的版本 nvm list available // 显示所有可以下载的版本 nvm install 14.5.0 // 安装14.5.0版本node nvm install latest // 安装最新版本node nvm use 14.5.0 // 使用14.5.0版本node nvm uninstall 14.5.0 // 卸载14.5.0版本node nvm arch :显示node是运行在32位还是64位系统上的 nvm on :开启nodejs版本管理 nvm off :关闭nodejs版本管理 nvm proxy [url] :设置下载代理。不加可选参数url,显示当前代理。将url设置为none则移除代理。 nvm node_mirror [url] :设置node镜像。默认是https://nodejs.org/dist/。如果不写url,则使用默认url。设置后可至安装目录settings.txt文件查看,也可直接在该文件操作。 nvm npm_mirror [url] :设置npm镜像。https://github.com/npm/cli/archive/。如果不写url,则使用默认url。设置后可至安装目录settings.txt文件查看,也可直接在该文件操作。 nvm root [path] :设置存储不同版本node的目录。如果未设置,默认使用当前目录。 nvm version :显示nvm版本。version可简化为v。 #最新地址 淘宝 NPM 镜像站喊你切换新域名啦! npm config set registry https://registry.npmmirror.com #查看镜像使用状态 npm config get registry #恢复官方镜像源 npm config set registry https://registry.npmjs.org #清除缓存 npm chache clean --force
|