This repository was archived by the owner on Apr 22, 2023. It is now read-only.

Description
Currently process.stdin / stdout / stderr is blocking, except when it is a pipe on windows. Weird and surprising. Very unpractical in cases where stdio is used as an IPC mechanism between node processes.
Discussion:http://logs.nodejs.org/libuv/2012-06-29#00:40:38.256
Preliminary results: have process.stdout.setBlocking(true|false)
or process.stdout.writeSync.
Feel free to post thoughts here.