I'd like to automatically restart the server after particular files are edited. Is there anything I can install to help me do that? - or will I need to watch the folder run a script accordingly. Any pointers appreciated

link|improve this question

79% accept rate
feedback

2 Answers

up vote 0 down vote accepted

You could use Nodemon for that, there is even a video tutorial on it.

link|improve this answer
Went with nodemon but I'm sure supervisor is fine too - thanks – Chin Nov 10 '11 at 10:16
feedback

Use supervisor. Install it with npm install supervisor -g and launch your code with supervisor server.js and you should be good to go. Note that by default it keeps an eye on the files that are in the same directory as the server.js and it's subdirectories, but it should be possible to add additional paths.

link|improve this answer
looks good thanks – Chin Nov 10 '11 at 9:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.