Skip to content

Instantly share code, notes, and snippets.

@jbinkleyj
Forked from cowboy/exit.js
Last active August 29, 2015 14:08
Show Gist options
  • Save jbinkleyj/4938b46456329b86b5b9 to your computer and use it in GitHub Desktop.
Save jbinkleyj/4938b46456329b86b5b9 to your computer and use it in GitHub Desktop.
// The idea. This doesn't work, but basically comes
// from https://github.com/gruntjs/grunt/pull/708
var exitCode;
function exit(code) {
if (exitCode === undefined) {
exitcode = code || 0;
tryToExit();
}
}
function isDrained(stream) {
var drained = stream.write('');
if (!drained) { stream.on('drain', tryToExit); }
return drained;
}
function tryToExit() {
if (isDrained(process.stdout) && isDrained(process.stderr)) {
process.exit(exitCode);
}
}
// Test code
for (var i = 0; i < 10; i++) {
console.log("testing %d", i);
}
exit(0);

Both of these need to work in Windows, using Node.js 0.8.x and 0.10.x

C:\exit>node exit.js
testing 0
testing 1
testing 2
testing 3
testing 4
testing 5
testing 6
testing 7
testing 8
testing 9

C:\exit>node exit.js | find "t"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment