thumbnail
38. lint-staged npm ERR! code ELIFECYCLE
dev_tips
2023.04.03.

38. lint-staged npm ERR! code ELIFECYCLE

npm ERR! code ELIFECYCLE 해결하기

가끔 node.js 프로젝트를 하다보면 알 수 없는 npm 에러 때문에 짜증날 때가 많다.
그때는 npm 캐시와 node_modules, package-lock.json을 제거하고 npm 을 다시 install 해주면 된다.

해결

$ npm cache clean --force
$ rm -rf node_modules package-lock.json
$ npm install

참고

rm 명령어는 디렉토리 삭제 명령어고, -rf 옵션은 하위 디렉토리까지(r), 강제로(f) 삭제한다는 옵션이다.

Thank You for Visiting My Blog, Have a Good Day 😆
© 2022 Developer hyungju-lee, Powered By Gatsby.