express reload
Automaticly reload your express.js server without bringing down the server. This is really useful because it will hot reload instead of waiting for the whole node.js process to restart.
Install
npm install express-reload --save-dev
Find it on https://www.npmjs.com/package/express-reload
Example
var express = var reload = var app = // path to reload// important should end with "/" if index.jsvar path = __dirname + '/project/'// or like this for a non index.js namevar path = __dirname + '/project/server.js' app app