create-react-app : npm ERR!解析“....”附近时 JSON 输入意外结束

IT技术 reactjs ubuntu npm npx
2021-05-07 19:29:25

描述错误

npx create-react-app my-app对我不起作用,我试过了,npm cache clean --force但我一次又一次地得到同样的错误

重现步骤

  1. npm cache clean --force
  2. 每日下午 / npx create-react-app front
npm init react-app front
npx: installed 98 in 37.068s

Creating a new React app in /home/h4kst3r/Desktop/APIs/restaurant-API/front.

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

npm ERR! Unexpected end of JSON input while parsing near '...zAJNgZjZUkJ08ybAxwNnR'

npm ERR! A complete log of this run can be found in:
npm ERR!     /home/h4kst3r/.npm/_logs/2020-05-20T20_47_49_189Z-debug.log

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

Deleting generated file... package.json
Deleting front/ from /home/h4kst3r/Desktop/APIs/restaurant-API
Done.

系统:

操作系统:Linux 5.4 Ubuntu 20.04 LTS (Focal Fossa)

4个回答

它的发生是因为互联网速度慢。所以等到你的互联网连接正常。或者一一安装所有依赖项。

如果npx create-react-app my-app命令不起作用并抛出如下错误:npm ERR! Unexpected end of JSON input while parsing near '...zAJNgZjZUkJ08ybAxwNnR',只需检查您的 npm 版本:

npm --version 
npm -v

如果需要,更新它:

npm install -g npm@latest

它肯定会起作用。

首先npm version通过运行以下命令进行检查npm --version如果您有 npm 版本npx,请在npm i -g npx. 如果npmngx安装正确,那么这将起作用。

sudo npm i -g npx --force 为我工作。