React

[react] npm start 에러(ELIFECYCLE, errno 1, Exit status 1)

joy_lee 2022. 3. 28. 21:50

npm start를 입력했는데 에러 메시지만 나오고 실행되지 않는다.

'react-scripts'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는 배치 파일이 아닙니다.

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!
tional logging output above.
npm WARN Local package.json exists, but node_modules missing, did you mean to install?

인터넷을 찾아보니 npm의 버전이 맞지 않을 때 나오는 메시지라고 한다.

npm을 다시 다운받고 실행하면 해결된다.

npm install

그 후 알고있는대로 npm start를 하면 리액트 페이지가 잘 나온다.