# 문제
npm run start를 했을 때 발생했다.
code ELIFECYCLE, errorno 1
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! chatbot-app@1.0.0 start: `node index.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the chatbot-app@1.0.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! C:\Users\shj41\AppData\Roaming\npm-cache\_logs\2022-01-22T14_48_52_766Z-debug.log
# 해결
로그가 쌓여서 발생했을 수 있다고 해서 아래 순서를 따라했더니 해결됐다.
1. 캐시 정리 :
npm cache clean --force
2. 기존 파일 삭제 :
rm -rf ./node_modules
rm -rf ./package-lock.json
3. npm 재설치 :
npm install