json输入意外结束反应

时间:2018-07-24 07:36:09

标签: javascript reactjs npm

我才刚刚开始我的编码之旅,而我刚开始使用react,但是当我尝试创建一个新应用时,出现以下错误。它表示JSON输入意外结束。

Installing packages. This might take a couple of minutes.
Installing react, react-dom, and react-scripts...

npm ERR! Unexpected end of JSON input while parsing near '...gin-precompile- 
charco'

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\vaibh\AppData\Roaming\npm-cache\_logs\2018-07- 
24T07_21_16_208Z-debug.log

Aborting installation.
npm install --save --save-exact --loglevel error react react-dom react- 
scripts has failed.

Deleting generated file... package.json
Deleting robofriends / from C:\Users\vaibh\Desktop
Done.

1 个答案:

答案 0 :(得分:3)

这是由于npm缓存。

您可以通过以下方法解决它:

npm cache clean --force

此外,请确保您的npm更新为最新版本。

npm i npm@latest -g

再试一次!