有时候npm install 安装时太慢了,可以试试设置淘宝镜像
1、更换镜像
npm config set registry https://registry.npm.taobao.org
问题报错:request to https://registry.npm.taobao.org/vuepress failed, reason: certificate has expired
原因:错误提示已经告诉原因是淘宝镜像过期了!
因此可以使用新的淘宝镜像地址
npm config set registry https://registry.npmmirror.com
2、查看镜像
npm config get registry
如果返回 https://registry.npm.taobao.org/
,说明配置的是淘宝镜像。
3、还原镜像
npm config set registry https://registry.npmjs.org