出自 BV1MN411y7pw, P94
黑马AJAX-Node.js-Webpack教学视频中npm包下载dayjs出错情况
输入 npm i dayjs
指令之后出错:
npm ERR! errno CERT_HAS_EXPIRED
npm ERR! A complete log of this run can be found in: C:\Users\24541\AppData\Local\npm-cache\_logs\2024-03-11T13_08_27_844Z-debug-0.log
PS V:\Web\mycode\nodejs\11 npm_use> npm i dayjs
npm ERR! code CERT_HAS_EXPIRED
npm ERR! errno CERT_HAS_EXPIRED
npm ERR! request to https://registry.npm.taobao.org/dayjs failed, reason: certificate has
expired
npm ERR! A complete log of this run can be found in: C:\Users\24541\AppData\Local\npm-cache\_logs\2024-03-11T13_09_50_871Z-debug-0.log
解决方法请看这篇文章: 《npm ERR! code CERT_HAS_EXPIRED:解决证书过期问题》
解决方法:
清除npm缓存: npm cache clean --force
取消ssl验证:npm config set strict-ssl false
我在第一条清除npm缓存缓存的时候没成功。第二条取消ssl验证成功了。
然后再次输入 npm i dayjs
指令,出现了 npm卡住(http fetch GET 200)的问题,通过这篇文章:《解决npm卡住》得知其实就是网卡了,等待一下就行了。
下载成功: