[nodemon] app crashed - waiting for file changes before starting...
내 원인
1. 코드에서 문법을 틀림 (해결 - 문법 수정)
일반적 원인
1. 파일 경로 이슈
해결 - 파일 경로의 위치를 수정 해준다.
1. rm - rf node_modules
2. npm start
rm - rf node_modules
npm start
2. 다른 프로스세와 충돌
해결 - 모두 종료 후 재부팅
1. pkill -f node
pkill -f node
'IT > 웹 개발' 카테고리의 다른 글
Git Bash 기본 명령어 정의 (0) | 2024.10.15 |
---|---|
"Cannot find module 'express' 에러 대처법 (0) | 2024.10.15 |
Option useNewUrlParser is not supported 에러 해결 (0) | 2024.09.22 |
템플레이팅으로 동적 HTML 구성하기 (2) | 2024.07.23 |
JavaScript 파일 간 코드 공유(브라우저와 Node.js의 차이점) (0) | 2024.07.10 |