1.查看自己当前的npm镜像
npm config get registry
2. 切换回原镜像(安装一些package不容易报错,或者发布npm插件)
npm config set registry https://registry.npmjs.org
3.切换为淘宝镜像
npm config set registry https://registry.npm.taobao.org
4.查看自己的代理
npm config get proxy
6.清除代理和缓存
npm config set proxy false
npm cache verify