node安装,nvm管理器

一、下载nvm,nvm-setup.exe

https://github.com/coreybutler/nvm-windows/releases

二、配置NodeJS下载代理镜像(可选)

可以在NVM安装根目录下的setting.txt文件中,配置NodeJS下载代理镜像,解决在线安装NodeJS时速度慢的问题

node_mirror: https://npm.taobao.org/mirrors/node/
npm_mirror: https://npm.taobao.org/mirrors/npm/

# 通过npm 安装镜像
npm install -g cnpm --registry=https://registry.npm.taobao.org 淘宝镜像
三、安装node
  1. nvm list available 查看可以下载的node版本
  2. nvm install xxx 安装指定的node版本
  3. nvm list 查看已经安装的node
  4. nvm use xxx 切换node版本
四、其他命令
  1. nvm uninstall xxx 卸载某个版本
  2. nvm current 查看版本
  3. nvm deactivate 取消vnm,执行命令后,node版本为系统原本的版本
  4. nvm cache dir 缓存文件
  5. nvm cache clear、nvm cache cleared 清除缓存文件
  6. nvm set-colors 更改显示颜色
  7. npm cache clean --force 清除缓存
  8. npm config set proxy null
  9. npm config set https-proxy null
  10. npm config get proxy
  11. npm config get https-proxy
  12. npm install cnpm -g --registry=https://registry.npm.taobao.org

你可能感兴趣的:(前端,node.js,nvm)