本文档主要介绍nvm的安装、使用、问题总结
Node当前版本下载地址:https://nodejs.org/zh-cn/download
Node以往版本下载地址:https://nodejs.org/zh-cn/download/releases
Node所有版本下载地址:https://registry.npmmirror.com/binary.html?path=node
————————————————————————————————
(1)查看npm的镜像源 npm config get registry
(2)把镜像源更改为淘宝镜像:
npm config set registry=https://registry.npm.taobao.org
(3). 安装成功后再查看npm 的镜像源
原始npm 镜像 与 切换的淘宝镜像
npm config set registry https://registry.npmjs.org/
npm config set registry https://registry.npm.taobao.org/
————————————————————————————————