linux版本

  1. 安装
curl -o- https://gitee.com/Annlix/nvm-sh_nvm/raw/master/install.sh|bash
  1. 查看nodejs版本
nvm ls-remote
  1. 安装指定版本
nvm install v16.18.1
  1. 查看已装版本
nvm list
  1. 切换指定版本
nvm run node v12.20.2
  1. 指定默认版本
nvm alias default v12.20.2
  1. 卸载指定版本
nvm uninstall v12.20.2
  1. 配置国内镜像源
npm config set registry https://registry.npmmirror.com
# 或者npm install -g cnpm --registry=https://registry.npmmirror.com
  1. 安装yarn,并行nodejs包管理工具
npm install yarn -g
版权声明:本文为小星的背包原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/aric2016/p/16910209.html