npm 启动错误与 create-react-app
npm start error with create-react-app
我有一个项目我已经 2 周没有接触了。我收回它,现在当我尝试 运行 npm start
时,我收到了这个错误。
> react-scripts start
sh: react-scripts: command not found
npm ERR! Darwin 16.0.0
npm ERR! argv "/usr/local/bin/node" "/usr/local/bin/npm" "start"
npm ERR! node v6.7.0
npm ERR! npm v3.10.3
npm ERR! file sh
npm ERR! code ELIFECYCLE
npm ERR! errno ENOENT
npm ERR! syscall spawn
npm ERR! UpScore@0.6.0 start: `react-scripts start`
npm ERR! spawn ENOENT
npm ERR!
npm ERR! Failed at the UpScore@0.6.0 start script 'react-scripts start'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the UpScore package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR! react-scripts start
npm ERR! You can get information on how to open an issue for this project with:
npm ERR! npm bugs UpScore
npm ERR! Or if that isn't available, you can get their info via:
npm ERR! npm owner ls UpScore
npm ERR! There is likely additional logging output above.
- 节点 6.7.0
- npm 3.10.3
- mac 塞拉利昂 10.12
package.json
{
"name": "UpScore",
"version": "0.6.0",
"private": true,
"devDependencies": {
"react-addons-test-utils": "^15.3.1",
"react-scripts": "0.4.1",
"react-test-renderer": "^15.3.1",
"redux-logger": "^2.6.1"
},
"dependencies": {
"@yoshokatana/medium-button": "^1.1.0",
"axios": "^0.14.0",
"bcrypt": "^0.8.7",
"bcrypt-nodejs": "0.0.3",
"bcryptjs": "^2.3.0",
"body-parser": "^1.15.2",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.3",
"draft-js": "^0.8.1",
"draft-js-editor": "^1.7.2",
"draft-js-export-html": "^0.4.0",
"ejs": "^2.5.2",
"email-verification": "^0.4.5",
"express": "^4.14.0",
"express-session": "^1.14.1",
"flexboxgrid": "^6.3.1",
"highlight.js": "^9.6.0",
"immutable": "^3.8.1",
"katex": "^0.6.0",
"lodash": "^4.15.0",
"markdown-it-mathjax": "^1.0.3",
"material-ui": "^0.15.4",
"medium-editor": "^5.22.0",
"minutes-seconds-milliseconds": "^1.0.3",
"moment": "^2.15.0",
"moment-duration-format": "^1.3.0",
"mongod": "^1.3.0",
"mongodb": "^2.2.9",
"mongoose": "^4.6.0",
"monk": "^3.1.2",
"morgan": "^1.7.0",
"normalize.css": "^3.0.3",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-markdown": "^2.4.2",
"react-medium-editor": "^1.8.1",
"react-redux": "^4.4.5",
"react-redux-form": "^0.14.5",
"react-rich-markdown": "^1.0.1",
"react-router": "^2.7.0",
"react-router-redux": "^4.0.5",
"react-tap-event-plugin": "^1.0.0",
"react-tinymce": "^0.5.1",
"redux": "^3.6.0",
"redux-form": "^6.0.5",
"redux-form-material-ui": "^4.0.1",
"redux-promise-middleware": "^4.0.0",
"redux-thunk": "^2.1.0",
"reselect": "^2.5.3",
"screenfull": "^3.0.2"
},
"scripts": {
"start": "react-scripts start",
"start:prod": "pushstate-server build",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"server": "cd client/api && pm2 start server.js --watch",
"proxy": "http://128.199.139.144:3000"
},
"eslintConfig": {
"extends": "./node_modules/react-scripts/config/eslint.js"
}
}
我也尝试克隆我的存储库并得到同样的错误。如果有人可以给我一些方法来找到发生了什么。谢谢
您的全局环境中似乎没有 react-scripts
。
这里有两种可能性:
npm install -g react-scripts
或者在您的 package.json 中像这样更改您的脚本部分:
"scripts": {
"start": "./node_modules/react-scripts/bin/react-scripts.js start",
"start:prod": "pushstate-server build",
"build": "./node_modules/react-scripts/bin/react-scripts.js build",
"test": "./node_modules/react-scripts/bin/react-scripts.js test --env=jsdom",
"eject": "./node_modules/react-scripts/bin/react-scripts.js eject",
"server": "cd client/api && pm2 start server.js --watch",
"proxy": "http://128.199.139.144:3000"
},
Create React App 作者签到
您绝对不应该全局安装 react-scripts
。
正如 所暗示的那样,您也 在 package.json
中不需要 ./node_modules/react-scripts/bin/
。
如果你看到这个:
npm ERR! UpScore@0.6.0 start: `react-scripts start`
npm ERR! spawn ENOENT
这只是第一次安装依赖项时出错了。
我建议执行以下三个步骤:
npm install -g npm@latest
更新 npm,因为它有时会出错。
rm -rf node_modules
删除现有模块。
npm install
重新安装项目依赖项。
这应该可以解决问题。
如果没有,请 file an issue 为您的项目和 Node 和 npm 版本添加 link。
是的,你不应该全局安装 react-scripts,它不会工作。
我想我第一次创建项目时(在另一台机器上)没有使用 --save,所以对我来说这解决了问题:
npm install --save react react-dom react-scripts
可能与其他库冲突,删除node_modules并重新npm install。
正如 Dan 所说的那样,
If you see this:
npm ERR! UpScore@0.6.0 start: `react-scripts start`
npm ERR! spawn ENOENT
It just means something went wrong when dependencies were installed the first time.
但我得到的结果略有不同,因为 运行 npm install -g npm@latest
更新 npm 有时可能会给您留下这个错误:
npm ERR! code ETARGET
npm ERR! notarget No matching version found for npm@lates
npm ERR! notarget In most cases you or one of your dependencies are requesting
npm ERR! notarget a package version that doesn't exist.
所以,我建议 运行 执行以下步骤,而不是 运行 npm install -g npm@latest
:
npm i -g npm //which will also update npm
rm -rf node_modules/ && npm cache clean // to remove the existing modules and clean the cache.
npm install //to re-install the project dependencies.
这会让您重新站起来。
对我来说,只是我没有将 react-scripts
添加到项目中,所以:
npm i -S react-scripts
如果这不起作用,则按照其他人的建议使用 rm node_modules
rm -r node_modules
npm i
万一你碰巧像我一样倒霉,连续花了三 (3) 天试图解决这个问题,这里提出的每个解决方案都让我失败了……在你的项目根目录中创建一个 .env 文件并添加这个代码 SKIP_PREFLIGHT_CHECK=true
。祝你好运
这是为了帮助其他完全陌生的人做出反应,帮助那些在启动第一个应用程序时遇到问题的人,即使他们进行了全新安装并尝试使用 npm install 和我在论坛上看到的其他修复程序。
运行 它在 Windows 10 上安装了所有最新的 npm create-react-app 并且在简单的 my-app 演示文件夹中的简单 npm 启动失败后失败。
起初看起来与 OP 错误相似但略有不同的地方花了很长时间。这从 ERRNO 4058 开始并继续代码 'ENOENT' 系统调用:'spawn cmd',路径:''cmd' ...
最终从 github create-react-app 论坛得出一个快速解决方法是在 "path" 变量中注册 cmd。为此,请转至系统属性>环境变量。单击路径变量编辑并添加 C:\Windows\System32 的新条目。重新启动 CMD 提示,我很高兴。
当 node_modules 与 package.json 不同步时会发生这种情况。
运行 根目录下的以下内容以及其中可能包含 node_modules 文件夹的任何子服务/子文件夹。
rd node_modules /S /Q
npm install
我按照命令
运行 解决了这个问题
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
希望对您有所帮助
我想到了,但上面的 none 有效。
events.js:72
throw er; // Unhandled 'error' event
^
npm ERR! UpScore@0.6.0 start: `react-scripts start`
npm ERR! spawn ENOENT
Error: spawn ENOENT
at errnoException (child_process.js:1000:11)
at Process.ChildProcess._handle.onexit (child_process.js:791:34)
发生这种情况是因为您可能已全局安装 react-scripts
。
为了使这项工作...
- 转到您的
C:\Users\<USER>\AppData\Roaming
- 删除npm和npm-cache目录...(不用担心你可以稍后全局安装npm)
- 返回您的应用程序目录并删除
node_modules
文件夹
- 现在输入
npm install
安装依赖项(删除包-lock.json如果已经创建)
- 现在运行
npm install --save react react-dom react-scripts
- 开始使用
npm start
这应该能让您重回正轨...编码愉快
我的问题源于权限问题。我按照这个解决了我的问题
https://docs.npmjs.com/resolving-eacces-permissions-errors-when-installing-packages-globally
使用 "SKIP_PREFLIGHT_CHECK=true" 添加 .env 文件而不是 npm start
我使用以下命令修复此问题:
npm install -g react-scripts
我遇到了以下问题。
请找出解决方案:
在全局PATH环境变量中添加"C:\Windows\System32"
检查是否为nodejs,npm 和composer创建了环境变量。如果不创建一个
- 运行 你的应用。
在您的终端中输入 unset HOST
。
我在运行
时遇到了同样的错误
npm start
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! protest-app@0.1.0 start: `react-scripts start`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the protest-app@0.1.0 start script.
我在几个选项卡和应用其他开发人员的解决方案时都崩溃了。
直到,即使使用 Ubuntu,我也关闭了我的 vscode 并重新启动了我的电脑,我所有的问题都得到了解决。 (kkkk zueira) 只有这个。
很简单但是第一次设置需要时间几步!!!
您在节点上安装了最新版本。
进入环境变量,设置路径"%SystemRoot%\system32"
.
运行 以管理员模式运行cmd。
写命令 npm start。
我已经在本地创建了 React 项目。发生这个问题的原因(对我来说)是我在 npm
之前没有使用 sudo
并且它需要 root 访问权限(
> sudo npm start
PS1:对于windows用户,powershell
或command line
应该是运行 作为管理员)
PS2:如果用户想解决root权限问题,可以看这个post.
在windows
中添加环境变量
- C:\WINDOWS\System32
- C:\程序Files\nodejs
- C:\程序Files\nodejs\node_modules\npm\bin
- C:\WINDOWS\System32\WindowsPowerShell\v1.0
- C:\Users{你的系统名称没有卷曲
大括号}\AppData\Roaming\npm
这 5 个必须在路径中。
并使用最新版本的node.js
我回答这个问题可能会很晚,但这对我有用,它可能会帮助某人回到开发轨道!
nvm install v12.0 // You may need to install nvm, if not already done
rm -rd node_modules/
npm cache clean --force
npm install
干杯!!
i 运行 npm install
项目内部
然后 npm start
有效
只需删除“node_module”文件,如果它在文件夹中看起来是灰色的,这意味着它不在那里,只需关闭 vs 代码然后重新打开
使用“npm install”安装 npm。
我有一个项目我已经 2 周没有接触了。我收回它,现在当我尝试 运行 npm start
时,我收到了这个错误。
> react-scripts start
sh: react-scripts: command not found
npm ERR! Darwin 16.0.0
npm ERR! argv "/usr/local/bin/node" "/usr/local/bin/npm" "start"
npm ERR! node v6.7.0
npm ERR! npm v3.10.3
npm ERR! file sh
npm ERR! code ELIFECYCLE
npm ERR! errno ENOENT
npm ERR! syscall spawn
npm ERR! UpScore@0.6.0 start: `react-scripts start`
npm ERR! spawn ENOENT
npm ERR!
npm ERR! Failed at the UpScore@0.6.0 start script 'react-scripts start'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the UpScore package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR! react-scripts start
npm ERR! You can get information on how to open an issue for this project with:
npm ERR! npm bugs UpScore
npm ERR! Or if that isn't available, you can get their info via:
npm ERR! npm owner ls UpScore
npm ERR! There is likely additional logging output above.
- 节点 6.7.0
- npm 3.10.3
- mac 塞拉利昂 10.12
package.json
{
"name": "UpScore",
"version": "0.6.0",
"private": true,
"devDependencies": {
"react-addons-test-utils": "^15.3.1",
"react-scripts": "0.4.1",
"react-test-renderer": "^15.3.1",
"redux-logger": "^2.6.1"
},
"dependencies": {
"@yoshokatana/medium-button": "^1.1.0",
"axios": "^0.14.0",
"bcrypt": "^0.8.7",
"bcrypt-nodejs": "0.0.3",
"bcryptjs": "^2.3.0",
"body-parser": "^1.15.2",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.3",
"draft-js": "^0.8.1",
"draft-js-editor": "^1.7.2",
"draft-js-export-html": "^0.4.0",
"ejs": "^2.5.2",
"email-verification": "^0.4.5",
"express": "^4.14.0",
"express-session": "^1.14.1",
"flexboxgrid": "^6.3.1",
"highlight.js": "^9.6.0",
"immutable": "^3.8.1",
"katex": "^0.6.0",
"lodash": "^4.15.0",
"markdown-it-mathjax": "^1.0.3",
"material-ui": "^0.15.4",
"medium-editor": "^5.22.0",
"minutes-seconds-milliseconds": "^1.0.3",
"moment": "^2.15.0",
"moment-duration-format": "^1.3.0",
"mongod": "^1.3.0",
"mongodb": "^2.2.9",
"mongoose": "^4.6.0",
"monk": "^3.1.2",
"morgan": "^1.7.0",
"normalize.css": "^3.0.3",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-markdown": "^2.4.2",
"react-medium-editor": "^1.8.1",
"react-redux": "^4.4.5",
"react-redux-form": "^0.14.5",
"react-rich-markdown": "^1.0.1",
"react-router": "^2.7.0",
"react-router-redux": "^4.0.5",
"react-tap-event-plugin": "^1.0.0",
"react-tinymce": "^0.5.1",
"redux": "^3.6.0",
"redux-form": "^6.0.5",
"redux-form-material-ui": "^4.0.1",
"redux-promise-middleware": "^4.0.0",
"redux-thunk": "^2.1.0",
"reselect": "^2.5.3",
"screenfull": "^3.0.2"
},
"scripts": {
"start": "react-scripts start",
"start:prod": "pushstate-server build",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"server": "cd client/api && pm2 start server.js --watch",
"proxy": "http://128.199.139.144:3000"
},
"eslintConfig": {
"extends": "./node_modules/react-scripts/config/eslint.js"
}
}
我也尝试克隆我的存储库并得到同样的错误。如果有人可以给我一些方法来找到发生了什么。谢谢
您的全局环境中似乎没有 react-scripts
。
这里有两种可能性:
npm install -g react-scripts
或者在您的 package.json 中像这样更改您的脚本部分:
"scripts": {
"start": "./node_modules/react-scripts/bin/react-scripts.js start",
"start:prod": "pushstate-server build",
"build": "./node_modules/react-scripts/bin/react-scripts.js build",
"test": "./node_modules/react-scripts/bin/react-scripts.js test --env=jsdom",
"eject": "./node_modules/react-scripts/bin/react-scripts.js eject",
"server": "cd client/api && pm2 start server.js --watch",
"proxy": "http://128.199.139.144:3000"
},
Create React App 作者签到
您绝对不应该全局安装 react-scripts
。
正如 package.json
中不需要 ./node_modules/react-scripts/bin/
。
如果你看到这个:
npm ERR! UpScore@0.6.0 start: `react-scripts start`
npm ERR! spawn ENOENT
这只是第一次安装依赖项时出错了。
我建议执行以下三个步骤:
npm install -g npm@latest
更新 npm,因为它有时会出错。rm -rf node_modules
删除现有模块。npm install
重新安装项目依赖项。
这应该可以解决问题。
如果没有,请 file an issue 为您的项目和 Node 和 npm 版本添加 link。
是的,你不应该全局安装 react-scripts,它不会工作。
我想我第一次创建项目时(在另一台机器上)没有使用 --save,所以对我来说这解决了问题:
npm install --save react react-dom react-scripts
可能与其他库冲突,删除node_modules并重新npm install。
正如 Dan 所说的那样,
If you see this:
npm ERR! UpScore@0.6.0 start: `react-scripts start`
npm ERR! spawn ENOENT
It just means something went wrong when dependencies were installed the first time.
但我得到的结果略有不同,因为 运行 npm install -g npm@latest
更新 npm 有时可能会给您留下这个错误:
npm ERR! code ETARGET
npm ERR! notarget No matching version found for npm@lates
npm ERR! notarget In most cases you or one of your dependencies are requesting
npm ERR! notarget a package version that doesn't exist.
所以,我建议 运行 执行以下步骤,而不是 运行 npm install -g npm@latest
:
npm i -g npm //which will also update npm
rm -rf node_modules/ && npm cache clean // to remove the existing modules and clean the cache.
npm install //to re-install the project dependencies.
这会让您重新站起来。
对我来说,只是我没有将 react-scripts
添加到项目中,所以:
npm i -S react-scripts
如果这不起作用,则按照其他人的建议使用 rm node_modules
rm -r node_modules
npm i
万一你碰巧像我一样倒霉,连续花了三 (3) 天试图解决这个问题,这里提出的每个解决方案都让我失败了……在你的项目根目录中创建一个 .env 文件并添加这个代码 SKIP_PREFLIGHT_CHECK=true
。祝你好运
这是为了帮助其他完全陌生的人做出反应,帮助那些在启动第一个应用程序时遇到问题的人,即使他们进行了全新安装并尝试使用 npm install 和我在论坛上看到的其他修复程序。
运行 它在 Windows 10 上安装了所有最新的 npm create-react-app 并且在简单的 my-app 演示文件夹中的简单 npm 启动失败后失败。
起初看起来与 OP 错误相似但略有不同的地方花了很长时间。这从 ERRNO 4058 开始并继续代码 'ENOENT' 系统调用:'spawn cmd',路径:''cmd' ...
最终从 github create-react-app 论坛得出一个快速解决方法是在 "path" 变量中注册 cmd。为此,请转至系统属性>环境变量。单击路径变量编辑并添加 C:\Windows\System32 的新条目。重新启动 CMD 提示,我很高兴。
当 node_modules 与 package.json 不同步时会发生这种情况。
运行 根目录下的以下内容以及其中可能包含 node_modules 文件夹的任何子服务/子文件夹。
rd node_modules /S /Q
npm install
我按照命令
运行 解决了这个问题echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
希望对您有所帮助
我想到了,但上面的 none 有效。
events.js:72
throw er; // Unhandled 'error' event
^
npm ERR! UpScore@0.6.0 start: `react-scripts start`
npm ERR! spawn ENOENT
Error: spawn ENOENT
at errnoException (child_process.js:1000:11)
at Process.ChildProcess._handle.onexit (child_process.js:791:34)
发生这种情况是因为您可能已全局安装 react-scripts
。
为了使这项工作...
- 转到您的
C:\Users\<USER>\AppData\Roaming
- 删除npm和npm-cache目录...(不用担心你可以稍后全局安装npm)
- 返回您的应用程序目录并删除
node_modules
文件夹 - 现在输入
npm install
安装依赖项(删除包-lock.json如果已经创建) - 现在运行
npm install --save react react-dom react-scripts
- 开始使用
npm start
这应该能让您重回正轨...编码愉快
我的问题源于权限问题。我按照这个解决了我的问题 https://docs.npmjs.com/resolving-eacces-permissions-errors-when-installing-packages-globally
使用 "SKIP_PREFLIGHT_CHECK=true" 添加 .env 文件而不是 npm start
我使用以下命令修复此问题:
npm install -g react-scripts
我遇到了以下问题。
请找出解决方案:
在全局PATH环境变量中添加"C:\Windows\System32"
检查是否为nodejs,npm 和composer创建了环境变量。如果不创建一个
- 运行 你的应用。
在您的终端中输入 unset HOST
。
我在运行
时遇到了同样的错误npm start
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! protest-app@0.1.0 start: `react-scripts start`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the protest-app@0.1.0 start script.
我在几个选项卡和应用其他开发人员的解决方案时都崩溃了。
直到,即使使用 Ubuntu,我也关闭了我的 vscode 并重新启动了我的电脑,我所有的问题都得到了解决。 (kkkk zueira) 只有这个。
很简单但是第一次设置需要时间几步!!!
您在节点上安装了最新版本。
进入环境变量,设置路径
"%SystemRoot%\system32"
.
运行 以管理员模式运行cmd。
写命令 npm start。
我已经在本地创建了 React 项目。发生这个问题的原因(对我来说)是我在 npm
之前没有使用 sudo
并且它需要 root 访问权限(
> sudo npm start
PS1:对于windows用户,powershell
或command line
应该是运行 作为管理员)
PS2:如果用户想解决root权限问题,可以看这个post.
在windows
中添加环境变量- C:\WINDOWS\System32
- C:\程序Files\nodejs
- C:\程序Files\nodejs\node_modules\npm\bin
- C:\WINDOWS\System32\WindowsPowerShell\v1.0
- C:\Users{你的系统名称没有卷曲 大括号}\AppData\Roaming\npm
这 5 个必须在路径中。
并使用最新版本的node.js
我回答这个问题可能会很晚,但这对我有用,它可能会帮助某人回到开发轨道!
nvm install v12.0 // You may need to install nvm, if not already done
rm -rd node_modules/
npm cache clean --force
npm install
干杯!!
i 运行 npm install
项目内部
然后 npm start
有效
只需删除“node_module”文件,如果它在文件夹中看起来是灰色的,这意味着它不在那里,只需关闭 vs 代码然后重新打开
使用“npm install”安装 npm。