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"
Created
September 19, 2013 21:53
-
-
Save cowboy/6630378 to your computer and use it in GitHub Desktop.
Attempting to work around Node.js colossal "fuck you" re. https://github.com/joyent/node/issues/3584
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
Ok, I've rewritten what you posted to be (I think) a little more robust. I've tested it in 0.8.25 and 0.10.18 and it appears to work fine with:
node exit.js 10
node exit.js 10 2>&1
node exit.js 10 2>&1 | find "["
node exit.js 10000
node exit.js 10000 2>&1
node exit.js 10000 2>&1 | find "["
node exit.js 10000 2>&1 | find "log"
node exit.js 10000 2>&1 | find "err"
What do you think? Can you test it out? If this works, I'll publish it as a standalone lib to npm.