npm install -g

패키지를 전역(Global)으로 설치하려면 -g flag 를 사용하면 됩니다.

전역으로 설치된 패키지는 디렉터리에 관계없이 작동합니다.

npm install nodemon

nodemon은 디렉토리의 파일 변경이 감지되면 노드 응용 프로그램을 자동으로 다시 시작하여 Node.js 기반 응용 프로그램을 개발하는 데 도움이 되는 도구입니다.

nodemon은 코드나 개발 방법을 추가로 변경할 필요가 없습니다. nodemon은 노드의 대체 래퍼입니다.

nodemon을 사용하려면 스크립트를 실행할 때 명령줄에서 node라는 단어를 바꾸면됩니다.

node index.js => nodemon index.js

Untitled

Untitled

Script 추가

"scripts": {
    "start": "node request.js",
    "dev": "nodemon requeset.js",
    "test": "echo \\"Error: no test sepicified\\" && exit 1"
}

Untitled

script 말고 직접 명령어로 실행

./node_modules/nodemon/bin/nodemon.js request.js

Untitled