今天在使用npm install时发现输入命令后卡着不动,一直转圈。
首先按照网上的处理方法设置了镜像地址
npm config set registry https://npmmirror.com/
之后继续执行npm install发现还是报错
npm error code FETCH_ERROR
npm error errno FETCH_ERROR
npm error invalid json response body at https://npmmirror.com/cookie-parser reason: Unexpected token ‘<’, "<!DOCTYPE "… is not valid JSON
npm error A complete log of this run can be found in: C:\Users\86740\AppData\Local\npm-cache_logs\2024-07-22T01_55_20_065Z-debug-0.log
之后发现是设置的镜像地址已经过期了,需要更新下
npm config set registry https://registry.npmmirror.com
npm install就可以正常使用了
仅供参考