简体   繁体   English

. 为什么我收到错误消息? 构建一个 React 应用程序

[英]. Why I am getting an error message? Building a React App

I wanted to start practicing with React to make a simple app.我想开始练习使用 React 来制作一个简单的应用程序。 Went ahead and downloaded homebrew and node onto my computer.继续将自制软件和节点下载到我的计算机上。 As I build my app with yarn install I get to the end where it tells you happy hacking.当我使用yarn install构建我的应用程序时,它会告诉你快乐的黑客攻击。 But when I run yarn start it gives me an error message.但是当我运行yarn 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: "eslint": "^6.6.0" Don't try to install it manually: your package manager does it automatically. However, a different version of eslint was detected higher up in the tree: /Users/zacharyschneider/node_modules/eslint (version: 5.16.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 "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 /Users/zacharyschneider/node_modules/eslint is outside your project directory, For example. you might have accidentally installed something in your home folder. 7. Try running npm ls eslint in your project folder. This will tell you which other package (apart from the expected react-scripts) installed 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. PS: We know this message is long but please read the steps above.-) We hope you find them helpful: error Command failed with exit code 1. info Visit https.//yarnpkg.com/en/docs/cli/run for documentation about this command. zacharyschneider@Zacharys-MBP %

A way to solve this issue or help me understand what is going on that would be great or point me in the right direction to find resources.解决此问题或帮助我了解正在发生的事情的方法会很棒,或者为我指明寻找资源的正确方向。

Thanks for your Help感谢您的帮助

It seems like you have installed es-lint 5.16.0 manually, and it conflicts with the needed version (6.6.0).看来您手动安装了 es-lint 5.16.0,它与所需的版本(6.6.0)冲突。

Have you tried the steps suggested in the error message?您是否尝试过错误消息中建议的步骤?

Do you explicitly tell the es-lint version in your package.json?您是否明确告诉 package.json 中的 es-lint 版本? Could you share your package.json if you continue to experience the issue?如果您继续遇到此问题,能否分享您的 package.json?

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

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM