执行npm install 时报错
npm ERR! Unexpected end of JSON input while parsing near
这个错误的解决方法有以下几种:
- 删掉package.lock.json
- 清除cache
npm cache clean --force
- 进入下面这个文件夹清除cache
路径:C:/Users/PC/AppData/Roaming/npm-cache
执行:
npm cache clean --force
- 可根据个人情况用淘宝镜像(cnpm install)。
npm set registry https://registry.npmjs.org/
本文介绍了在使用npm进行包安装时遇到的“Unexpected end of JSON input”错误,并提供了多种解决方法,包括删除package.lock.json文件、清理缓存、使用淘宝镜像等。
1844

被折叠的 条评论
为什么被折叠?



