使用Npm start启动项目期间在Project中获取错误,使用create-react-app创建项目

时间:2018-11-25 10:25:40

标签: node.js reactjs npm babel-jest

我正在使用ubantu 16操作系统,并且已安装

  

节点版本v10.13.0和npm版本6.4.1

我正在基于create-react-app创建Reactjs项目。

我已经使用命令

创建了项目
inputPanel

此命令成功创建了my-app,但是当我使用 npm start 运行项目时 我的应用文件夹下的命令我遇到以下错误

sudo npm init react-app my-app

这表明与问题有关

  

react-scripts开始,“ babel-jest”:“ 23.6.0”

但是我是js框架(node / npm / react)的新手,请问如何解决此问题?

package.json

> my-app@0.1.0 start /home/karan/workspace/1425/my-app
> 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-jest": "23.6.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:

  /home/karan/workspace/node_modules/babel-jest (version: 22.4.4) 

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

If 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 /home/karan/workspace/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! my-app@0.1.0 start: `react-scripts start` npm ERR! Exit status 1 npm ERR!  npm ERR! Failed at the my-app@0.1.0 start script. npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

1 个答案:

答案 0 :(得分:0)

即使您收到ELIFECYCLE错误而不是EACCES,也可能与您使用sudo运行命令有关。尝试不使用sudo再次创建并运行项目。

请遵循此guide,以获取有关操作方法的更多详细信息。