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
- 맥 시에라 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"
}
}
내 repos도 복제하려고 시도하고 동일한 오류가 발생합니다. 누군가 나에게 무슨 일이 일어나는지 알 수있는 방법을 줄 수 있다면. 감사합니다
답변
Create React App 체크인 작성자.
react-scripts
전 세계적으로 설치해서는 안됩니다 .
당신은 또한 하지 않는 필요 ./node_modules/react-scripts/bin/
에 package.json
로 이 답변은 의미한다.
이게 보이면 :
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
프로젝트 종속성을 다시 설치하십시오.
이렇게하면 문제가 해결됩니다.
그렇지 않은 경우 프로젝트 및 Node 및 npm 버전에 대한 링크를 사용하여 문제 를 제출 하십시오.
답변
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"
},
답변
예, 전역 적으로 반응 스크립트를 설치해서는 안됩니다. 작동하지 않습니다.
프로젝트를 처음 만들 때 (다른 컴퓨터에서) –save를 사용하지 않았기 때문에 문제가 해결되었습니다.
npm install --save react react-dom react-scripts
답변
이것은 새로운 설치를하고 npm 설치 및 포럼에서 본 다른 수정 사항을 사용해도 첫 번째 앱을 시작하는 데 문제가있는 사람과 완전히 새로운 사람들을 돕기위한 것입니다.
모든 최신 npm create-react-app이 설치된 Windows 10에서 실행하고 간단한 my-app 데모 폴더에서 간단한 npm 시작 실패 후 실패했습니다.
처음에는 OP 오류와 비슷해 보이지만 약간 다릅니다. 이것은 ERRNO 4058로 시작하고 코드 ‘ENOENT’syscall : ‘spawn cmd’, 경로 : ”cmd ‘…로 계속됩니다.
결국 github create-react-app 포럼에서이 문제에 대한 빠른 수정은 “path”변수에 cmd를 등록하는 것입니다. 이렇게하려면 시스템 속성> 환경 변수로 이동합니다. 경로 변수 편집을 클릭하고 C : \ Windows \ System32의 새 항목을 추가합니다. CMD 프롬프트를 다시 시작하면 좋았습니다.
답변
Dan이 정확하게 말했듯이
이게 보이면 :
npm ERR! UpScore@0.6.0 start: `react-scripts start`
npm ERR! spawn ENOENT
종속성이 처음 설치되었을 때 문제가 발생했음을 의미합니다.
그러나 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.
이것은 당신을 당신의 발로 되돌릴 것입니다.
답변
이 문제를 해결하기 위해 3 일을 연속으로 보낸 나처럼 운이 좋지 않은 경우 여기에서 제안 된 모든 솔루션이 실패했습니다. 프로젝트 루트에 .env 파일을 만들고이 코드를 추가합니다 SKIP_PREFLIGHT_CHECK=true
. 행운을 빕니다
답변
나에게는 단순히 react-scripts
프로젝트에 추가하지 않았기 때문입니다.
npm i -S react-scripts
이것이 작동하지 않으면 node_modules
다른 사람들이 제안한 rm
rm -r node_modules
npm i