【NPM】npm ERR! Unexpected end of JSON input while parsing near '...",'解决方案

问题描述

今天安装项目依赖npm install 的时候出现错误:

npm ERR! Unexpected end of JSON input while parsing near '...e":"^23.5.0","listr":'

方案一:

第一步:

npm cache clean --force

第二步:(再安装)

npm install --registry=https://registry.npm.taobao.org

方案二

执行以上操作依然没解决问题。最后切换为官方镜像后解决了,具体原因不详。

第一步:

npm cache clean --force

第二步:(再安装)

npm set registry https://registry.npmjs.org/
上一篇:Draw your Next App Idea with Ink to Code


下一篇:Java Servlet生成JSON格式数据并用jQuery显示