解决-npm:Unexpected end of JSON input while parsing near XXX

现象

第一次搭建react项目,使用npx create-react-app my-app创建react项目时,报了如下错误

npm ERR! Unexpected end of JSON input while parsing near '...UeAD+E05SGR0joEmNFGJw'

npm ERR! A complete log of this run can be found in:
npm ERR!     /Users/cdd/.npm/_logs/2018-12-05T06_19_21_061Z-debug.log

解决办法

在终端执行以下命令:

npm cache clean --force

原因可能是我刚升级了Node版本和npm版本导致cache中的文件与安装的某个文件冲突了。

你可能感兴趣的:(React)