nodemon 설치 (글로벌)
npm install nodemon -g
nodemon 실행
nodemon [실행 파일]
nodemon 중지 (windows)
tasklist | findstr "node"
// PID 번호 찾고
taskkill /f /pid [PID 번호]
nodemon 중지 (Linux)
ps aux | grep -i nodemon
// Process ID 찾고
kill -9 [Process ID]