创建反应应用程序:npm 错误!在“....”附近解析时 JSON 输入意外结束
create-react-app : npm ERR! Unexpected end of JSON input while parsing near '....'
描述错误
npx create-react-app my-app
对我不起作用
我试过 npm cache clean --force
但我一次又一次地得到同样的错误
重现步骤
npm cache clean --force
- npm /
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.
系统:
OS: Linux 5.4 Ubuntu 20.04 LTS(焦点窝)
首先通过 运行 以下命令 npm --version
检查 npm version
。如果你有 npm 版本,那么尝试在 npm i -g npx
的帮助下全局安装 npx
。如果 npm
和 ngx
安装正确,那么这将起作用。
它的发生是因为网速慢。所以请等到您的互联网连接正常。或者一一安装所有依赖
.
sudo npm i -g npx --force
对我有用。
如果 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
一定有用。
您应该以 root 用户身份执行此操作。打开终端并输入 sudo -i
或 sudo -s
。成功登录后,$ 提示符将更改为 #,表示您在 Ubuntu 上以 root 用户身份登录。然后,如果您使用 `create-react-app,它实际上应该可以工作:)
可能有两个问题。
- 互联网连接不佳。
- 过时的 npm 版本。
更新您的 npm 并寻求强大的互联网连接。
描述错误
npx create-react-app my-app
对我不起作用
我试过 npm cache clean --force
但我一次又一次地得到同样的错误
重现步骤
npm cache clean --force
- npm /
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.
系统:
OS: Linux 5.4 Ubuntu 20.04 LTS(焦点窝)
首先通过 运行 以下命令 npm --version
检查 npm version
。如果你有 npm 版本,那么尝试在 npm i -g npx
的帮助下全局安装 npx
。如果 npm
和 ngx
安装正确,那么这将起作用。
它的发生是因为网速慢。所以请等到您的互联网连接正常。或者一一安装所有依赖 .
sudo npm i -g npx --force
对我有用。
如果 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
一定有用。
您应该以 root 用户身份执行此操作。打开终端并输入 sudo -i
或 sudo -s
。成功登录后,$ 提示符将更改为 #,表示您在 Ubuntu 上以 root 用户身份登录。然后,如果您使用 `create-react-app,它实际上应该可以工作:)
可能有两个问题。
- 互联网连接不佳。
- 过时的 npm 版本。
更新您的 npm 并寻求强大的互联网连接。