create-react-app无法启动脚本后

时间:2019-11-14 06:44:28

标签: node.js reactjs npm webpack npx

在运行以下命令时,启动脚本失败,并且没有执行任何操作:
npm start

错误


There might be a problem with the project dependency tree.
It is likely not a bug in Create React App, but something you need to fix locally.

The react-scripts package provided by Create React App requires a dependency:

  "webpack-dev-server": "3.2.1"

Don't try to install it manually: your package manager does it automatically.
However, a different version of webpack-dev-server was detected higher up in the tree:

  /home/akhilbatchu/node_modules/webpack-dev-server (version: 3.8.1) 

Manually installing incompatible versions is known to cause hard-to-debug issues.

If you would prefer to ignore this check, add SKIP_PREFLIGHT_CHECK=true to an .env file in your project.
That will permanently disable this message but you might encounter other issues.

To fix the dependency tree, try following the steps below in the exact order:

  1. Delete package-lock.json (not package.json!) and/or yarn.lock in your project folder.
  2. Delete node_modules in your project folder.
  3. Remove "webpack-dev-server" from dependencies and/or devDependencies in the package.json file in your project folder.
  4. Run npm install or yarn, depending on the package manager you use.

In most cases, this should be enough to fix the problem.
If this has not helped, there are a few other things you can try:

  5. If you used npm, install yarn (http://yarnpkg.com/) and repeat the above steps with it instead.
     This may help because npm has known issues with package hoisting which may get resolved in future versions.

  6. Check if /home/akhilbatchu/node_modules/webpack-dev-server is outside your project directory.
     For example, you might have accidentally installed something in your home folder.

  7. Try running npm ls webpack-dev-server in your project folder.
     This will tell you which other package (apart from the expected react-scripts) installed webpack-dev-server.

If nothing else helps, add SKIP_PREFLIGHT_CHECK=true to an .env file in your project.
That would permanently disable this preflight check in case you want to proceed anyway.

P.S. We know this message is long but please read the steps above :-) We hope you find them helpful!

npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! appnamsse@0.1.0 start: `react-scripts start`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the appnamsse@0.1.0 start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     /home/akhilbatchu/.npm/_logs/2019-11-14T06_22_13_747Z-debug.log

这是发生的事情的完整日志:

0 info it worked if it ends with ok
1 verbose cli [
1 verbose cli   '/home/akhilbatchu/.nvm/versions/node/v12.13.0/bin/node',
1 verbose cli   '/home/akhilbatchu/.nvm/versions/node/v12.13.0/bin/npm',
1 verbose cli   'start'
1 verbose cli ]
2 info using npm@6.12.0
3 info using node@v12.13.0
4 verbose run-script [ 'prestart', 'start', 'poststart' ]
5 info lifecycle appnamsse@0.1.0~prestart: appnamsse@0.1.0
6 info lifecycle appnamsse@0.1.0~start: appnamsse@0.1.0
7 verbose lifecycle appnamsse@0.1.0~start: unsafe-perm in lifecycle true
8 verbose lifecycle appnamsse@0.1.0~start: PATH: /home/akhilbatchu/.nvm/versions/node/v12.13.0/lib/node_modules/npm/node_modules/npm-lifecycle/node-gyp-bin:/home/akhilbatchu/appnamsse/node_modules/.bin:/home/akhilbatchu/.nvm/versions/node/v12.13.0/bin:/home/akhilbatchu/anaconda3/bin:/home/akhilbatchu/anaconda3/condabin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/lib/jvm/java-8-oracle/bin:/usr/lib/jvm/java-8-oracle/db/bin:/usr/lib/jvm/java-8-oracle/jre/bin
9 verbose lifecycle appnamsse@0.1.0~start: CWD: /home/akhilbatchu/appnamsse
10 silly lifecycle appnamsse@0.1.0~start: Args: [ '-c', 'react-scripts start' ]
11 silly lifecycle appnamsse@0.1.0~start: Returned: code: 1  signal: null
12 info lifecycle appnamsse@0.1.0~start: Failed to exec start script
13 verbose stack Error: appnamsse@0.1.0 start: `react-scripts start`
13 verbose stack Exit status 1
13 verbose stack     at EventEmitter.<anonymous> (/home/akhilbatchu/.nvm/versions/node/v12.13.0/lib/node_modules/npm/node_modules/npm-lifecycle/index.js:332:16)
13 verbose stack     at EventEmitter.emit (events.js:210:5)
13 verbose stack     at ChildProcess.<anonymous> (/home/akhilbatchu/.nvm/versions/node/v12.13.0/lib/node_modules/npm/node_modules/npm-lifecycle/lib/spawn.js:55:14)
13 verbose stack     at ChildProcess.emit (events.js:210:5)
13 verbose stack     at maybeClose (internal/child_process.js:1021:16)
13 verbose stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:283:5)
14 verbose pkgid appnamsse@0.1.0
15 verbose cwd /home/akhilbatchu/appnamsse
16 verbose Linux 4.15.0-64-generic
17 verbose argv "/home/akhilbatchu/.nvm/versions/node/v12.13.0/bin/node" "/home/akhilbatchu/.nvm/versions/node/v12.13.0/bin/npm" "start"
18 verbose node v12.13.0
19 verbose npm  v6.12.0
20 error code ELIFECYCLE
21 error errno 1
22 error appnamsse@0.1.0 start: `react-scripts start`
22 error Exit status 1
23 error Failed at the appnamsse@0.1.0 start script.
23 error This is probably not a problem with npm. There is likely additional logging output above.
24 verbose exit [ 1, true ]

版本
节点:v12.13.0
NPM:v6.12.0

环境
反应:“ ^ 16.11.0”,
react-dom:“ ^ 16.11.0”,
react-scripts:“ 3.2.0”

任何人都可以请我帮忙,因为我无法弄清楚出了什么问题,并且是全新的反应方式。

谢谢。

3 个答案:

答案 0 :(得分:1)

是否已安装依赖项。

npm install

如果不起作用,请从项目中删除node_modules文件夹。然后

npm install
npm start 

答案 1 :(得分:1)

您是否阅读了第一条错误消息?

它说(第6步)您(偶然地)已将webpack-dev-server的副本安装到您​​的主目录中

/home/akhilbatchu/node_modules/webpack-dev-server

删除该副本(例如,如果您不想将其彻底删除,请将/home/akhilbatchu/node_modules重命名为/home/akhilbatchu/node_modules_unused),然后重试。

答案 2 :(得分:0)

我确实按照以下步骤进行工作

  1. npm install -g npm@latest,它将更新npm,以防您的模块未更新

  2. rm -rf node_modules

    删除项目文件夹中的node_modules。,如日志中所述

  3. npm install

    运行npm install或yarn,具体取决于您使用的软件包管理器。控制台中提到的