🤦♀️ React npm start 오류
CRA (create-react-app) 을 통해 React 프로젝트를 생성하였습니다. 하지만 npm start
커맨드를 입력할 때마다 오류가 반환되었습니다.
오류의 내용은 다음과 같습니다
오류 내용
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! myapp@0.1.0 start: `react-scripts start`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the myapp@0.1.0 start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /root/.npm/_logs/2021-09-16T11_18_40_838Z-debug.log
해결을 위해 스크립트들이 저장되어 있는 package-lock.json 파일을 삭제 후 npm을 다시 설치합니다.
아래 커맨드를 차례로 입력하여 This is probably not a problem with npm. There is likely additional logging output above 오류를 해결합니다.
sudo rm -r package-lock.json
npm install
그 뒤 npm start
를 진행하면 This is probably not a problem with npm. There is likely additional logging output above 오류 없이 세선이 실행됩니다.