From 3713b236017e1ab403bf15790696050b6c886c3d Mon Sep 17 00:00:00 2001 From: Yevgeniy Brikman Date: Sun, 10 Apr 2011 03:38:04 -0700 Subject: [PATCH] Added a note about node-supervisor to README --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index a2d11d1..468e8bc 100644 --- a/README.md +++ b/README.md @@ -143,6 +143,8 @@ Example usage: // the same code will work server side too! In server.js: dust.render('foo', {}, function(err, out) { console.log(err ? err : out); }); // output: 'Hello world!' +In addition to this watcher utility, I highly recommend using [node-supervisor](https://github.com/isaacs/node-supervisor) so that your node.js instance automatically redeploys any time you make a code change to it. Sure beats having to hit `ctrl+c, up-arrow, enter` each time you change server.js. + # License (The MIT License)