如何解决npx create-react-app错误?

时间:2020-06-13 14:32:26

标签: reactjs npm

我在制作React项目时遇到了麻烦,基本上我正在做npx create-react-app portfolio,这是终端中的日志

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 '...w2l6C\nBZrjaE2TabX86o'
npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\ITland\AppData\Roaming\npm-cache\_logs\2020-06-13T14_28_52_450Z-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 portfolio/ from C:\Users\ITland\Desktop\New folder (2)

有人知道导致此错误的原因吗?

3 个答案:

答案 0 :(得分:1)

上面显示的日志消息表明npx命令已在文件夹中运行-

C:\ Users \ ITland \ Desktop \ New文件夹(2)

在Windows上,npm命令有时会由于文件夹名称中的空格或特殊字符而失败。

始终建议在运行npm的文件夹名称中避免空格和特殊字符。

可以通过在内部运行npm / npx命令来解决上述问题

C:\ Users \ ITland \ Desktop \ New_folder_2

答案 1 :(得分:0)

尝试运行以下命令

npm cache clean --force

一旦成功,尝试做您想要的。

答案 2 :(得分:0)

尝试以下方式:

npm cache clean --force

如果您是windows用户,请尝试删除此文件夹中的所有文件:

C:\ Users {{您的用户名}} \ AppData \ Roaming \ npm缓存

然后...

npm cache verify

如果这不起作用,请尝试更新到最新版本

npm i npm@latest -g