As of now, this module is deprecated. It worked great for me, but it's Linux only, and now I'm on Mac.
I recommend https://github.com/remy/nodemon.
The module relies on inotify, only available for Linux.
For other OS I'd recommend supervisor or nodemon.
It autoreloads Node.JS in case of any file changes.
$ npm install dev -g
$ node-dev app.js
Starting: app.js
> server is listening on http://127.0.0.1:8080
node-dev
will rerun app.js
whenever one of the watched files is
changed.
The module is based on inotify. So, unlike most other modules of this kind, it starts watching new files automatically.
A number of additional options make the module really flexible and extendible.
npm install dev -g
Global installation is preferred to have node-dev
utility in path.
If you've installed it globally, then there is a node-dev
on path, so chdir to your app and run it:
$ node-dev app.js
Starting: app.js
> server is listening on http://127.0.0.1:8080
Then go to your IDE and edit files. node-dev
keeps your app up-to-date. The only need to switch to terminal is when there are errors.
But even if there are errors, you can switch back to IDE, correct them and node-dev
will autorestart the server again for you.
By default, files under ./public
, files with extensions .db, .dirtydb
, files and directories starting with dot .
are not watched.
The node-dev
utility is a tiny file which basically contains two lines:
var manager = require("dev")(options);
manager.start();
You can copy and modify it, or create your own, more featured autorestarter on it's base.
The options
object may have following properties:
run
: the js file to run, e.g./app.js
, it is the only required option.
watchDir
: the folder to watch recursively, default:.
ignoredPaths
[ paths ]: array of ignored paths, which are not watched, members can be:string
, matched exactly against path, like./public
,RegExp
, e.g an extension check:/\.gif$/
function(path)
, which takes the path and returnstrue
if it should be ignored
debug
: enables additional logging output about watches and changes, default:false
logger
: custom logger object, must haveerror(...)
anddebug(...)
methods, delegates toconsole.log
by default. Can use any other logger.
onRunOutput
: callbackfunction(output)
, called forstdout
data from the running processonRunError
: callbackfunction(output)
, called forstderr
data from the running process
You can use these to send error notifications and integrate with your development environment if you wish.
This module doesn't compile/run on non-Linux OS. See the head of this file for the details.
There are limits on the number of watched files in inotify. For example, Debian has 8192 by default. In most cases, that should be enough. If it's not, and you really really need to watch so many files, then you can adjust the limit.
To change the limit:
$ echo 16384 > /proc/sys/fs/inotify/max_user_watches
Or:
$ sudo sysctl fs.inotify.max_user_watches=16364
To make the change permanent, edit the file /etc/sysctl.conf
and add this line to the end of the file:
fs.inotify.max_user_watches=16384