Add process.stderr stream

This commit is contained in:
Ryan Dahl 2011-02-03 14:03:44 -08:00
parent f6e5b8986f
commit bc23ec8d05
2 changed files with 13 additions and 0 deletions

View File

@ -81,6 +81,11 @@ Example: the definition of `console.log`
};
### process.stderr
A writable stream to stderr. Writes on this stream are blocking.
### process.stdin
A `Readable Stream` for stdin. The stdin stream is paused by default, so one

View File

@ -153,6 +153,14 @@
return stdout;
});
var stderr = process.stderr = {
writable: true,
readable: false,
write: process.binding('stdio').writeError
};
stderr.end = stderr.destroy = stderr.destroySoon = function() { };
process.__defineGetter__('stdin', function() {
if (stdin) return stdin;