码迷,mamicode.com
首页 > 移动开发 > 详细

react使用create-react-app后npm start报错

时间:2020-05-08 18:19:55      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:ted   file   out   anyway   err   ora   pen   sed   life   

在通过create-react-app创建好react项目之后,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:

 

  "babel-jest": "^24.9.0"

 

Don‘t try to install it manually: your package manager does it automatically.

However, a different version of babel-jest was detected higher up in the tree:

 

  /Users/edz/node_modules/babel-jest (version: 25.4.0) 

 

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-jest" 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/edz/node_modules/babel-jest is outside your project directory.

     For example, you might have accidentally installed something in your home folder.

 

  7. Try running npm ls babel-jest in your project folder.

     This will tell you which other package (apart from the expected react-scripts) installed babel-jest.

 

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! myapp@0.1.0 start: `react-scripts start`

npm ERR! Exit status 1

npm ERR! 

npm ERR! Failed at the myapp@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/edz/.npm/_logs/2020-05-08T09_02_14_204Z-debug.log

 

原因:主要是babel-jest的版本不同导致

解决方法:忽略检查,在项目中创建1个.env文件,并在文件中添加SKIP_PREFLIGHT_CHECK=true后保存。(注意:.env文件的名字就是.env哦)

这个方法会永久禁用此消息,提示可能会遇到其他问题,暂时还没,等遇到再说。

react使用create-react-app后npm start报错

标签:ted   file   out   anyway   err   ora   pen   sed   life   

原文地址:https://www.cnblogs.com/buweixiu/p/12851678.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!