从报错信息就可以知道是因为之前设置的淘宝镜像已过期,解决方法就是要把之前设置的淘宝镜像改成新的
npm报错,显示certificate has expired-LMLPHP

第一种方法

第一步:清空缓存
npm cache clean --force

第二步:重新设置新的镜像源
npm config set registry https://registry.npmmirror.com

第三步:使用npm安装工具,没有再报错了
npm install

1、查看镜像仓库
npm config get registry
2、设置镜像仓库
npm config set registry https://registry.npmmirror.com`

如果不行的话,就把ssl禁用吧

npm cache clean --force
npm config set strict-ssl false
npm install

03-18 02:28