node.js

关注公众号 jb51net

关闭
首页 > 网络编程 > JavaScript > node.js > npm淘宝镜像过期

npm淘宝镜像过期解决办法

作者:黎明晓月

npm 官方镜像在国内访问很慢,很多同学都会选择切换到国内的一些 npm 镜像,本文主要介绍了npm淘宝镜像过期解决办法,感兴趣的可以了解一下

众所周知,npm 官方镜像(registry.npmjs.org)在国内访问很慢,很多同学都会选择切换到国内的一些 npm 镜像,如淘宝镜像、腾讯云镜像。

由于淘宝原来的镜像(registry.npm.taobao.org)HTTPS 证书正式到期,因此需要切换到淘宝最新的镜像,否则会出现证书到期异常。

在这里插入图片描述

解决办法

1.检测现在的镜像地址

npm config get registry

2.如果不是淘宝最新的镜像地址,请更换

//清空缓存
npm cache clean --force
//切换新源
npm config set registry https://registry.npmmirror.com

3.最好使用淘宝命令工具cnpm

//安装cnpm
npm install -g cnpm --registry=https://registry.npmmirror.com
//检测是否安装成功
cnpm -v
//安装你的依赖,这是我的
cnpm install vue-bus

之后安装就可以成功了

在这里插入图片描述

国内镜像还有如下,根据自己的需要使用:
腾讯:http://mirrors.cloud.tencent.com/npm/
华为:https://mirrors.huaweicloud.com/repository/npm/
中科大镜像:https://registry.npmjs.org/

到此这篇关于npm淘宝镜像过期解决办法的文章就介绍到这了,更多相关npm淘宝镜像过期内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文