Skip to content

Instantly share code, notes, and snippets.

@onmoving
Created October 5, 2012 07:56
Show Gist options
  • Save onmoving/3838651 to your computer and use it in GitHub Desktop.
Save onmoving/3838651 to your computer and use it in GitHub Desktop.
[node.js]Supervisor

Supervisor를 활용한 생산성 향상

참고 url: Node.js 개발 생산성을 높이기 위한 도구 "Supervisor"(http://inspiredjw.tistory.com/?page=8), InspiredJW

$ sudo npm install supervisor -g
...
/usr/local/bin/node-supervisor -> /usr/local/lib/node_modules/supervisor/lib/cli-wrapper.js
/usr/local/bin/supervisor -> /usr/local/lib/node_modules/supervisor/lib/cli-wrapper.js
supervisor@0.4.1 /usr/local/lib/node_modules/supervisor

$ export NODE_ENV=development
$ supervisor -e 'node|js|coffee|jade' app.js

or

$ supervisor -e 'node|js|coffee|jade' app.coffee

if html, css, image are modified, then rerun supervisor

press ctrl + c
$ supervisor -e 'node|js|coffee|jade' app.js

or

$ supervisor -e 'node|js|coffee|jade' app.coffee
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment