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"
-
-
Save jbinkleyj/4938b46456329b86b5b9 to your computer and use it in GitHub Desktop.
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
// 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); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment