查看当前镜像源
npm config get registry
临时修改镜像源
在npm install XXX 时加入 --registry URL即可,如修改成淘宝npm镜像
npm --registry https://registry.npmmirror.com/ install xxx
永久修改镜像源
永久修改就需要修改本地npm的配置了
npm config set registry https://registry.npmmirror.com/
设置官方镜像源
npm config set registry https://registry.npmjs.org/