소스 변경시 변경사항을 감지하여 자동으로 서버를 재시작해주는 tool npm install nodemon --save-dev 다른 개발자들이 npm install할 때 nodemon이 자동으로 설치되게끔 해주는 명령문 npm init --yes 패키지 json을 불러온다. "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "start": "nodemon app" }, package.json의 scripts에 "start": "nodemon app"을 명시해준다.