最近使用npm安装工具屡屡报错,大致显示为:npm ERR! request to https://registry.npm.taobao.org/cnpm failed, reason: certificate has expired.
从报错信息就可以知道是因为你之前设置的淘宝镜像已过期,解决方法就是要把之前设置的淘宝镜像改成新的:
第一步:清空缓存
npm cache clean --force
第二步:重新设置新的镜像源
npm config set registry https://registry.npmmirror.com
第三步:使用npm安装工具,没有再报错了
npm install XX