zlib.createGzip()

zlib.createGzip(options) Returns a new Gzip object with an options.

zlib.createGunzip()

zlib.createGunzip(options) Returns a new Gunzip object with an options.

zlib.createDeflateRaw()

zlib.createDeflateRaw(options) Returns a new DeflateRaw object with an options.

zlib.createDeflate()

zlib.createDeflate(options) Returns a new Deflate object with an options.

writestream.rows

ws.rows A Number that gives the number of rows the TTY currently has. This property gets updated on 'resize' events.

writeStream.path

writeStream.path The path to the file the stream is writing to.

writestream.columns

ws.columns A Number that gives the number of columns the TTY currently has. This property gets updated on 'resize' events.

writeStream.bytesWritten

writeStream.bytesWritten The number of bytes written so far. Does not include data that is still queued for writing.

WriteStream

Class: 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).

writable._writev()

Stability: 2 - Stable A stream is an abstract interface implemented by various objects in Node.js. For example a request to an HTTP server is a stream, as is process.stdout. Streams are readable, writable, or both. All streams are instances of EventEmitter. You can load the Stream base classes by doing require('stream'). There are base classes provided for Readable streams, Writable streams, Duplex streams, and Transform streams. This document is split up into 3 sections: The first section e