js.node.tty
| .. | |
|---|---|
| ReadStream | A net.Socket subclass that represents the readable portion of a tty. In normal circumstances, process.stdin will be the only tty.ReadStream instance in any node program (only when isatty(0) is true). |
| WriteStream | A net.Socket subclass that represents the writable portion of a tty. In normal circumstances, process.stdout will be the only tty.WriteStream instance ever created (and only when isatty(1) is true). |
| WriteStreamEvent | Enumeration of events emitted by |