Created
May 20, 2013 04:40
-
-
Save iandundas/5610456 to your computer and use it in GitHub Desktop.
Node.js hot reload
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* This file is part of the Spludo Framework. | |
* Copyright (c) 2009-2010 DracoBlue, http://dracoblue.net/ | |
* | |
* Licensed under the terms of MIT License. For the full copyright and license | |
* information, please see the LICENSE file in the root folder. | |
*/ | |
var server_filename = "server.js"; | |
var child_process = require('child_process'); | |
var fs = require("fs"); | |
var sys = require("sys"); | |
dev_server = { | |
process: null, | |
files: [], | |
restarting: false, | |
"restart": function() { | |
this.restarting = true; | |
sys.debug('DEVSERVER: Stopping server for restart'); | |
this.process.kill(); | |
}, | |
"start": function() { | |
var that = this; | |
sys.debug('DEVSERVER: Starting server'); | |
that.watchFiles(); | |
this.process = child_process.spawn(process.argv[0], [server_filename]); | |
this.process.stdout.addListener('data', function (data) { | |
process.stdout.write(data); | |
}); | |
this.process.stderr.addListener('data', function (data) { | |
sys.print(data); | |
}); | |
this.process.addListener('exit', function (code) { | |
sys.debug('DEVSERVER: Child process exited: ' + code); | |
this.process = null; | |
if (that.restarting) { | |
that.restarting = true; | |
that.unwatchFiles(); | |
that.start(); | |
} | |
}); | |
}, | |
"watchFiles": function() { | |
var that = this; | |
child_process.exec('find . | grep "\.js$"', function(error, stdout, stderr) { | |
var files = stdout.trim().split("\n"); | |
files.forEach(function(file) { | |
that.files.push(file); | |
fs.watchFile(file, {interval : 500}, function(curr, prev) { | |
if (curr.mtime.valueOf() != prev.mtime.valueOf() || curr.ctime.valueOf() != prev.ctime.valueOf()) { | |
sys.debug('DEVSERVER: Restarting because of changed file at ' + file); | |
dev_server.restart(); | |
} | |
}); | |
}); | |
}); | |
}, | |
"unwatchFiles": function() { | |
this.files.forEach(function(file) { | |
fs.unwatchFile(file); | |
}); | |
this.files = []; | |
} | |
} | |
dev_server.start(); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment