简体   繁体   English

使用 npx create-react-app 创建的应用无法启动,

[英]App created with npx create-react-app failed to start,

Greatings,伟大的,

a few months ago i created an app via create-react-app.几个月前,我通过 create-react-app 创建了一个应用程序。 This app did not run when i entered npm start.当我进入 npm 启动时,这个应用程序没有运行。 And i get the following error message:我收到以下错误消息:

react-scripts 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:

  "babel-loader": "8.1.0"

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

  /Users/kevinmotzkus/Documents/projects/node_modules/babel-loader (version: 8.0.6) 

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 "babel-loader" 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 /Users/kevinmotzkus/Documents/projects/node_modules/babel-loader is outside your project directory.
     For example, you might have accidentally installed something in your home folder.

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

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! womd@0.1.0 start: `react-scripts start`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the womd@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!     /Users/kevinmotzkus/.npm/_logs/2020-07-10T20_09_39_848Z-debug.log

I followed the steps, but it isn´t working.我按照步骤操作,但它不起作用。 I dont know what to look for.我不知道要找什么。

do i need to install package managements into the app folder?我是否需要将 package 管理安装到应用程序文件夹中? Im kinda new to react and coding so be patient and gentle please ^^我对反应和编码有点陌生,所以请耐心和温柔^^

Im happy if you give me critic about my question too, is it understandable, do you need more or specific information?如果您也对我的问题提出批评,我很高兴,这可以理解吗,您需要更多或具体的信息吗?

You could delete the package-lock.json file and the node_modules folder and then run您可以删除 package-lock.json 文件和 node_modules 文件夹,然后运行

npm install

Also, this is a pretty similar issue Create React App requires a dependency: “babel-loader”: “8.1.0”此外,这是一个非常相似的问题Create React App requires a dependency: “babel-loader”: “8.1.0”

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 无法使用“npx create-react-app signup_react”创建反应应用程序 - Failed to create react app using “npx create-react-app signup_react” 我可以在没有 npm 启动和 npx create-react-app 的情况下使用 React 运行 index.html 吗? - Can I run index.html with React without npm start and npx create-react-app? npx create-react-app my-app 错误:rollbackFailedOptional - npx create-react-app my-app ERORR: rollbackFailedOptional 使用 npx create-react-app 创建应用后<myproject> ,并使用“npm start”启动应用程序我得到了下面提到的这个错误</myproject> - After creating app using npx create-react-app <myproject> , and start app by using "npm start" i got this error mentioned below npx create-react-app 在运行 npm 启动时出错 - npx create-react-app gives error when running npm start npx create-react-app 和 create-react-app 的区别 - Difference between npx create-react-app and create-react-app 将 Cesium/Resium 与 npx create-react-app 的构建集成不起作用 - Integrating Cesium/Resium with a build of npx create-react-app is not working 错误:在 npx create-react-app 运行期间产生 UNKNOWN - Error: spawn UNKNOWN during npx create-react-app run npx create-react-app 命令不起作用 - npx create-react-app command does not working 命令 - 'npx create-react-app myapp' 不起作用 - the command - 'npx create-react-app myapp' does not work
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM