nodejs, npm이 설치 되어 있다고 가정 한다.

매번 컴파일 해야 하는 부담감을 줄여주고 새로 작성된 코드를 자동으로 컴파일 해준다.


Step 1.  nodemon 설치하기

npm grobal 옵션을 사용하여 설치 한다.



whitelife@whitelife-note:~/workspace/HelloWorld$ sudo npm install nodemon -g
[sudo] password for whitelife:
npm http GET https://registry.npmjs.org/nodemon
npm http 304 https://registry.npmjs.org/nodemon
/usr/bin/nodemon -> /usr/lib/node_modules/nodemon/nodemon.js
nodemon@0.7.2 /usr/lib/node_modules/nodemon


Step 2.  테스트 하기

node xxx.js -> nodemon xxx.js 로 실행 한다. 소스가 수정 될 경우 자동으로 적용 된다.



whitelife@whitelife-note:~/workspace/HelloWorld$ nodemon index.js
4 Feb 15:37:25 - [nodemon] v0.7.2
4 Feb 15:37:25 - [nodemon] watching: /home/whitelife/workspace/HelloWorld
4 Feb 15:37:25 - [nodemon] starting `node index.js`
Server has started.


// ...


4 Feb 15:43:03 - [nodemon] starting `node index.js`
Server has started.


'Nodejs' 카테고리의 다른 글

Html을 Jade로 변환하기  (0) 2013.02.06
Nodejs의 의미와 자바의 대안  (0) 2013.02.05
[스크랩] 완벽 튜토리얼 정리  (0) 2013.02.04
Nodejs로 WebServer 띄우기  (0) 2012.11.18
Nodejs로 Hello World! 띄우기  (0) 2012.11.18

+ Recent posts