-
-
Save Gamblt/a3f9781b26f70995700ab96a50b7edbc to your computer and use it in GitHub Desktop.
Auto restart nodejs process when program exit
This file contains 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
var child_process = require('child_process'); | |
start(); | |
function start(nodefile) { | |
if (typeof start !== 'string') { | |
console.log('Has none file. like this: start("app.js")'); | |
} | |
console.log('Master process is running.'); | |
var proc = child_process.spawn('node', [nodefile]); | |
proc.stdout.on('data', function (data) { | |
console.log(data.toString()); | |
}); | |
proc.stderr.on('data', function (data) { | |
console.log(data.toString()); | |
}); | |
proc.on('exit', function (code) { | |
console.log('child process exited with code ' + code); | |
delete(proc); | |
setTimeout(start, 5000); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment