首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >npm start正在显示babel-eslint版本的问题

npm start正在显示babel-eslint版本的问题
EN

Stack Overflow用户
提问于 2020-07-19 21:02:23
回答 3查看 1.2K关注 0票数 0

当我运行npm start命令来启动使用npx create- react -app my-app创建的react应用程序的服务器时,以下错误是occuring.Please帮助我解决以下错误。我也尝试了下面提到的所有步骤,但错误没有清除。

代码语言:javascript
复制
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-eslint": "10.1.0"

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

  C:\Users\LENOVO\node_modules\babel-eslint (version: 9.0.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-eslint" 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 C:\Users\LENOVO\node_modules\babel-eslint is outside your project directory.
     For example, you might have accidentally installed something in your home folder.

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

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! reactapp@0.1.0 start: `react-scripts start`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the reactapp@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!     C:\Users\LENOVO\AppData\Roaming\npm-cache\_logs\2020-07-19T12_53_40_050Z-debug.log
EN

回答 3

Stack Overflow用户

发布于 2020-07-29 03:17:49

在Desktop文件夹之外创建应用程序。

票数 0
EN

Stack Overflow用户

发布于 2020-09-25 14:15:11

这是由于安装在用户目录中的包版本所致。错误中的行提到了全局用户目录中的覆盖版本。

C:\Users\LENOVO\node_modules\babel-eslint (版本: 9.0.0)

尝试更新用户目录中node_modules文件夹中的版本,或者删除这些版本并根据每个项目的要求维护本地node_modules。

票数 0
EN

Stack Overflow用户

发布于 2021-09-23 04:49:14

我找到了一个可能的解决方案,或者至少这个方案对我很有效。npm install @babel/eslint-parser,然后是npm start。如果这不起作用,首先试试这个:

  • 在您的节点模块或
  • 搜索中删除babel-eslint,您可以使用npm ls babel-eslint

找到该搜索

我希望对你有用。:)

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/62980643

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档