npm ERR! request to https://registry.npm.taobao.org/yallist failed, reason: certificate has expired异常解决
1.问题描述
今天在对ohpm进行初始化的时候显示这样的一条信息
npm ERR! request to https://registry.npm.taobao.org/yallist failed, reason: certificate has expired
原因是 :npm的淘宝镜像地址https://registry.npm.taobao.org/yallist失败,证书已过期
2.解决方式
修改Dockerfile构建指令,配置新的 registry ,将过期的地址改新地址:https://registry.npmmirror.com
1、cmd命令中输入“npm config get registry
”:查看npm源地址
2、cmd命令中输入“npm config set registry https://registry.npmmirror.com
”:设置新下载地址
3、设置好后,在cmd命令中输入“npm config get registry
”,确认是否更改成功。
3.修改效果
当我再次对ohpm初始化时成功完成初始化操作
解决!