Stream

    You can load the Stream base classes by doing require('stream').
    There are base classes provided for Readable streams,
    streams, Duplex streams, and streams.

    This document is split up into 3 sections. The first explains the
    parts of the API that you need to be aware of to use streams in your
    programs. If you never implement a streaming API yourself, you can
    stop there.

    The second section explains the parts of the API that you need to use
    if you implement your own custom streams yourself. The API is
    designed to make this easy for you to do.

    The third section goes into more depth about how streams work,
    including some of the internal mechanisms and functions that you
    should probably not modify unless you definitely know what you are
    doing.

    Streams can be either Readable, , or both (Duplex).

    All streams are EventEmitters, but they also have other custom methods
    and properties depending on whether they are Readable, Writable, or
    Duplex.

    If a stream is both Readable and Writable, then it implements all of
    the methods and events below. So, a or Transform stream is
    fully described by this API, though their implementation may be
    somewhat different.

    It is not necessary to implement Stream interfaces in order to consume
    streams in your programs. If you are implementing streaming
    interfaces in your own program, please also refer to
    below.

    Almost all Node programs, no matter how simple, use Streams in some
    way. Here is an example of using Streams in a Node program:

    1. var http = require('http');
    2. var server = http.createServer(function (req, res) {
    3. // req is an http.IncomingMessage, which is a Readable Stream
    4. // res is an http.ServerResponse, which is a Writable Stream
    5. var body = '';
    6. // we want to get the data as utf8 strings
    7. // If you don't set an encoding, then you'll get Buffer objects
    8. req.setEncoding('utf8');
    9. // Readable streams emit 'data' events once a listener is added
    10. req.on('data', function (chunk) {
    11. body += chunk;
    12. });
    13. // the end event tells you that you have entire body
    14. req.on('end', function () {
    15. try {
    16. var data = JSON.parse(body);
    17. } catch (er) {
    18. // uh oh! bad json!
    19. res.statusCode = 400;
    20. return res.end('error: ' + er.message);
    21. }
    22. // write back something interesting to the user:
    23. res.write(typeof data);
    24. res.end();
    25. });
    26. });
    27. server.listen(1337);
    28. // $ curl localhost:1337 -d '{}'
    29. // object
    30. // $ curl localhost:1337 -d '"foo"'
    31. // string
    32. // $ curl localhost:1337 -d 'not json'
    33. // error: Unexpected token o

    The Readable stream interface is the abstraction for a source of
    data that you are reading from. In other words, data comes out of a
    Readable stream.

    A Readable stream will not start emitting data until you indicate that
    you are ready to receive it.

    Readable streams have two “modes”: a flowing mode and a paused
    mode
    . When in flowing mode, data is read from the underlying system
    and provided to your program as fast as possible. In paused mode, you
    must explicitly call stream.read() to get chunks of data out.
    Streams start out in paused mode.

    Note: If no data event handlers are attached, and there are no
    pipe() destinations, and the stream is switched into flowing
    mode, then data will be lost.

    You can switch to flowing mode by doing any of the following:

    • Adding a handler to listen for data.
    • Calling the resume() method to explicitly open the flow.
    • Calling the method to send the data to a Writable.

    You can switch back to paused mode by doing either of the following:

    • If there are no pipe destinations, by calling the
      method.
    • If there are pipe destinations, by removing any 'data' event
      handlers, and removing all pipe destinations by calling the
      method.

    Note that, for backwards compatibility reasons, removing 'data'
    event handlers will not automatically pause the stream. Also, if
    there are piped destinations, then calling pause() will not
    guarantee that the stream will remain paused once those
    destinations drain and ask for more data.

    Examples of readable streams include:

    Event: ‘readable’

    When a chunk of data can be read from the stream, it will emit a
    'readable' event.

    In some cases, listening for a 'readable' event will cause some data
    to be read into the internal buffer from the underlying system, if it
    hadn’t already.

    1. var readable = getReadableStreamSomehow();
    2. readable.on('readable', function() {
    3. // there is some data to read now
    4. });

    Once the internal buffer is drained, a readable event will fire
    again when more data is available.

    The readable event is not emitted in the “flowing” mode with the
    sole exception of the last one, on end-of-stream.

    Event: ‘data’

    • chunk {Buffer | String} The chunk of data.

    Attaching a data event listener to a stream that has not been
    explicitly paused will switch the stream into flowing mode. Data will
    then be passed as soon as it is available.

    If you just want to get all the data out of the stream as fast as
    possible, this is the best way to do so.

    1. var readable = getReadableStreamSomehow();
    2. readable.on('data', function(chunk) {
    3. console.log('got %d bytes of data', chunk.length);
    4. });

    Note that the readable event should not be used together with data
    because the assigning the latter switches the stream into “flowing” mode,
    so the readable event will not be emitted.

    Event: ‘end’

    This event fires when there will be no more data to read.

    Note that the end event will not fire unless the data is
    completely consumed. This can be done by switching into flowing mode,
    or by calling read() repeatedly until you get to the end.

    1. var readable = getReadableStreamSomehow();
    2. readable.on('data', function(chunk) {
    3. console.log('got %d bytes of data', chunk.length);
    4. });
    5. readable.on('end', function() {
    6. console.log('there will be no more data.');
    7. });

    Event: ‘close’

    Emitted when the underlying resource (for example, the backing file
    descriptor) has been closed. Not all streams will emit this.

    Event: ‘error’

    • {Error Object}

    Emitted if there was an error receiving data.

    readable.read([size])

    • size {Number} Optional argument to specify how much data to read.
    • Return {String | Buffer | null}

    The read() method pulls some data out of the internal buffer and
    returns it. If there is no data available, then it will return
    null.

    If you pass in a size argument, then it will return that many
    bytes. If size bytes are not available, then it will return null.

    If you do not specify a size argument, then it will return all the
    data in the internal buffer.

    This method should only be called in paused mode. In flowing mode,
    this method is called automatically until the internal buffer is
    drained.

    1. var readable = getReadableStreamSomehow();
    2. readable.on('readable', function() {
    3. var chunk;
    4. while (null !== (chunk = readable.read())) {
    5. console.log('got %d bytes of data', chunk.length);
    6. }
    7. });

    If this method returns a data chunk, then it will also trigger the
    emission of a 'data' event.

    readable.setEncoding(encoding)

    • encoding {String} The encoding to use.
    • Return: this

    Call this function to cause the stream to return strings of the
    specified encoding instead of Buffer objects. For example, if you do
    readable.setEncoding('utf8'), then the output data will be
    interpreted as UTF-8 data, and returned as strings. If you do
    readable.setEncoding('hex'), then the data will be encoded in
    hexadecimal string format.

    This properly handles multi-byte characters that would otherwise be
    potentially mangled if you simply pulled the Buffers directly and
    called buf.toString(encoding) on them. If you want to read the data
    as strings, always use this method.

    1. var readable = getReadableStreamSomehow();
    2. readable.setEncoding('utf8');
    3. readable.on('data', function(chunk) {
    4. assert.equal(typeof chunk, 'string');
    5. console.log('got %d characters of string data', chunk.length);
    6. });

    readable.resume()

    • Return: this

    This method will cause the readable stream to resume emitting data
    events.

    This method will switch the stream into flowing mode. If you do not
    want to consume the data from a stream, but you do want to get to
    its end event, you can call to open the flow of
    data.

    1. var readable = getReadableStreamSomehow();
    2. readable.resume();
    3. readable.on('end', function(chunk) {
    4. console.log('got to the end, but did not read anything');
    5. });

    readable.pause()

    • Return: this

    This method will cause a stream in flowing mode to stop emitting
    data events, switching out of flowing mode. Any data that becomes
    available will remain in the internal buffer.

    1. var readable = getReadableStreamSomehow();
    2. readable.on('data', function(chunk) {
    3. console.log('got %d bytes of data', chunk.length);
    4. readable.pause();
    5. console.log('there will be no more data for 1 second');
    6. setTimeout(function() {
    7. console.log('now data will start flowing again');
    8. readable.resume();
    9. }, 1000);
    10. });

    readable.isPaused()

    • Return: Boolean

    This method returns whether or not the readable has been explicitly
    paused by client code (using readable.pause() without a corresponding
    readable.resume()).

    1. var readable = new stream.Readable
    2. readable.isPaused() // === false
    3. readable.pause()
    4. readable.isPaused() // === true
    5. readable.resume()
    6. readable.isPaused() // === false

    readable.pipe(destination[, options])

    • destination { Stream} The destination for writing data
    • options {Object} Pipe options
      • end {Boolean} End the writer when the reader ends. Default = true

    This method pulls all the data out of a readable stream, and writes it
    to the supplied destination, automatically managing the flow so that
    the destination is not overwhelmed by a fast readable stream.

    Multiple destinations can be piped to safely.

    This function returns the destination stream, so you can set up pipe
    chains like so:

    1. var r = fs.createReadStream('file.txt');
    2. var z = zlib.createGzip();
    3. var w = fs.createWriteStream('file.txt.gz');
    4. r.pipe(z).pipe(w);

    For example, emulating the Unix cat command:

    1. process.stdin.pipe(process.stdout);

    By default end() is called on the destination when the source stream
    emits end, so that destination is no longer writable. Pass { end: false } as options to keep the destination stream open.

    This keeps writer open so that “Goodbye” can be written at the
    end.

    1. reader.pipe(writer, { end: false });
    2. reader.on('end', function() {
    3. writer.end('Goodbye\n');
    4. });

    Note that process.stderr and process.stdout are never closed until
    the process exits, regardless of the specified options.

    readable.unpipe([destination])

    • destination {Writable Stream} Optional specific stream to unpipe

    This method will remove the hooks set up for a previous pipe() call.

    If the destination is not specified, then all pipes are removed.

    If the destination is specified, but no pipe is set up for it, then
    this is a no-op.

    1. var readable = getReadableStreamSomehow();
    2. var writable = fs.createWriteStream('file.txt');
    3. // All the data from readable goes into 'file.txt',
    4. // but only for the first second
    5. readable.pipe(writable);
    6. setTimeout(function() {
    7. console.log('stop writing to file.txt');
    8. readable.unpipe(writable);
    9. console.log('manually close the file stream');
    10. writable.end();
    11. }, 1000);

    readable.unshift(chunk)

    • chunk {Buffer | String} Chunk of data to unshift onto the read queue

    This is useful in certain cases where a stream is being consumed by a
    parser, which needs to “un-consume” some data that it has
    optimistically pulled out of the source, so that the stream can be
    passed on to some other party.

    If you find that you must often call stream.unshift(chunk) in your
    programs, consider implementing a Transform stream instead. (See API
    for Stream Implementors, below.)

    1. // Pull off a header delimited by \n\n
    2. // Call the callback with (error, header, stream)
    3. var StringDecoder = require('string_decoder').StringDecoder;
    4. function parseHeader(stream, callback) {
    5. stream.on('error', callback);
    6. stream.on('readable', onReadable);
    7. var decoder = new StringDecoder('utf8');
    8. var header = '';
    9. function onReadable() {
    10. var chunk;
    11. while (null !== (chunk = stream.read())) {
    12. var str = decoder.write(chunk);
    13. if (str.match(/\n\n/)) {
    14. // found the header boundary
    15. var split = str.split(/\n\n/);
    16. header += split.shift();
    17. var remaining = split.join('\n\n');
    18. var buf = new Buffer(remaining, 'utf8');
    19. if (buf.length)
    20. stream.unshift(buf);
    21. stream.removeListener('error', callback);
    22. stream.removeListener('readable', onReadable);
    23. // now the body of the message can be read from the stream.
    24. callback(null, header, stream);
    25. } else {
    26. // still reading the header.
    27. header += str;
    28. }
    29. }
    30. }
    31. }

    readable.wrap(stream)

    • stream {Stream} An “old style” readable stream

    Versions of Node prior to v0.10 had streams that did not implement the
    entire Streams API as it is today. (See “Compatibility” below for
    more information.)

    If you are using an older Node library that emits 'data' events and
    has a pause() method that is advisory only, then you can use the
    wrap() method to create a stream that uses the old stream
    as its data source.

    You will very rarely ever need to call this function, but it exists
    as a convenience for interacting with old Node programs and libraries.

    For example:

    1. var OldReader = require('./old-api-module.js').OldReader;
    2. var oreader = new OldReader;
    3. var Readable = require('stream').Readable;
    4. var myReader = new Readable().wrap(oreader);
    5. myReader.on('readable', function() {
    6. myReader.read(); // etc.
    7. });

    Class: stream.Writable

    Examples of writable streams include:

    writable.write(chunk[, encoding][, callback])

    • chunk {String | Buffer} The data to write
    • encoding {String} The encoding, if chunk is a String
    • callback {Function} Callback for when this chunk of data is flushed
    • Returns: {Boolean} True if the data was handled completely.

    This method writes some data to the underlying system, and calls the
    supplied callback once the data has been fully handled.

    The return value indicates if you should continue writing right now.
    If the data had to be buffered internally, then it will return
    false. Otherwise, it will return true.

    This return value is strictly advisory. You MAY continue to write,
    even if it returns false. However, writes will be buffered in
    memory, so it is best not to do this excessively. Instead, wait for
    the drain event before writing more data.

    Event: ‘drain’

    If a writable.write(chunk) call returns false, then the drain
    event will indicate when it is appropriate to begin writing more data
    to the stream.

    1. // Write the data to the supplied writable stream 1MM times.
    2. // Be attentive to back-pressure.
    3. function writeOneMillionTimes(writer, data, encoding, callback) {
    4. write();
    5. function write() {
    6. var ok = true;
    7. do {
    8. i -= 1;
    9. if (i === 0) {
    10. // last time!
    11. writer.write(data, encoding, callback);
    12. } else {
    13. // see if we should continue, or wait
    14. // don't pass the callback, because we're not done yet.
    15. ok = writer.write(data, encoding);
    16. }
    17. } while (i > 0 && ok);
    18. if (i > 0) {
    19. // had to stop early!
    20. // write some more once it drains
    21. writer.once('drain', write);
    22. }
    23. }
    24. }

    writable.cork()

    Forces buffering of all writes.

    Buffered data will be flushed either at .uncork() or at .end() call.

    writable.uncork()

    Flush all data, buffered since .cork() call.

    writable.setDefaultEncoding(encoding)

    • encoding {String} The new default encoding
    • Return: Boolean

    Sets the default encoding for a writable stream. Returns true if the encoding
    is valid and is set. Otherwise returns false.

    writable.end([chunk][, encoding][, callback])

    • chunk {String | Buffer} Optional data to write
    • encoding {String} The encoding, if chunk is a String
    • callback {Function} Optional callback for when the stream is finished

    Call this method when no more data will be written to the stream. If
    supplied, the callback is attached as a listener on the finish event.

    1. // write 'hello, ' and then end with 'world!'
    2. var file = fs.createWriteStream('example.txt');
    3. file.write('hello, ');
    4. file.end('world!');

    Calling after calling end() will raise an error:

    1. // end with 'world!' and then write with 'hello, ' will raise an error
    2. var file = fs.createWriteStream('example.txt');
    3. file.end('world!');
    4. file.write('hello, ');

    Event: ‘finish’

    When the end() method has been called, and all data has been flushed
    to the underlying system, this event is emitted.

    Event: ‘pipe’

    • src {Readable Stream} source stream that is piping to this writable

    This is emitted whenever the pipe() method is called on a readable
    stream, adding this writable to its set of destinations.

    1. var writer = getWritableStreamSomehow();
    2. var reader = getReadableStreamSomehow();
    3. writer.on('pipe', function(src) {
    4. console.error('something is piping into the writer');
    5. assert.equal(src, reader);
    6. });
    7. reader.pipe(writer);

    Event: ‘unpipe’

    • src {Readable Stream} The source stream that this writable

    This is emitted whenever the unpipe() method is called on a
    readable stream, removing this writable from its set of destinations.

    1. var writer = getWritableStreamSomehow();
    2. var reader = getReadableStreamSomehow();
    3. writer.on('unpipe', function(src) {
    4. console.error('something has stopped piping into the writer');
    5. assert.equal(src, reader);
    6. });
    7. reader.pipe(writer);
    8. reader.unpipe(writer);

    Event: ‘error’

    • {Error object}

    Emitted if there was an error when writing or piping data.

    Class: stream.Duplex

    Duplex streams are streams that implement both the and
    Writable interfaces. See above for usage.

    Examples of Duplex streams include:

    Class: stream.Transform

    Transform streams are streams where the output is in some way
    computed from the input. They implement both the Readable and
    interfaces. See above for usage.

    Examples of Transform streams include:

    To implement any sort of stream, the pattern is the same:

    1. Extend the appropriate parent class in your own subclass. (The
      util.inherits method is particularly helpful for this.)
    2. Call the appropriate parent class constructor in your constructor,
      to be sure that the internal mechanisms are set up properly.
    3. Implement one or more specific methods, as detailed below.

    The class to extend and the method(s) to implement depend on the sort
    of stream class you are writing:





























    In your implementation code, it is very important to never call the
    methods described in above. Otherwise, you
    can potentially cause adverse side effects in programs that consume
    your streaming interfaces.

    Class: stream.Readable

    stream.Readable is an abstract class designed to be extended with an
    underlying implementation of the method.

    Please see above under API for Stream Consumers for how to consume
    streams in your programs. What follows is an explanation of how to
    implement Readable streams in your programs.

    Example: A Counting Stream

    This is a basic example of a Readable stream. It emits the numerals
    from 1 to 1,000,000 in ascending order, and then ends.

    1. var Readable = require('stream').Readable;
    2. var util = require('util');
    3. util.inherits(Counter, Readable);
    4. function Counter(opt) {
    5. Readable.call(this, opt);
    6. this._max = 1000000;
    7. this._index = 1;
    8. }
    9. Counter.prototype._read = function() {
    10. var i = this._index++;
    11. if (i > this._max)
    12. this.push(null);
    13. else {
    14. var str = '' + i;
    15. var buf = new Buffer(str, 'ascii');
    16. this.push(buf);
    17. }
    18. };

    Example: SimpleProtocol v1 (Sub-optimal)

    This is similar to the parseHeader function described above, but
    implemented as a custom stream. Also, note that this implementation
    does not convert the incoming data to a string.

    However, this would be better implemented as a stream. See
    below for a better implementation.

    1. // A parser for a simple data protocol.
    2. // The "header" is a JSON object, followed by 2 \n characters, and
    3. // then a message body.
    4. //
    5. // NOTE: This can be done more simply as a Transform stream!
    6. // Using Readable directly for this is sub-optimal. See the
    7. // alternative example below under the Transform section.
    8. var Readable = require('stream').Readable;
    9. var util = require('util');
    10. util.inherits(SimpleProtocol, Readable);
    11. function SimpleProtocol(source, options) {
    12. if (!(this instanceof SimpleProtocol))
    13. return new SimpleProtocol(source, options);
    14. Readable.call(this, options);
    15. this._inBody = false;
    16. this._sawFirstCr = false;
    17. // source is a readable stream, such as a socket or file
    18. this._source = source;
    19. var self = this;
    20. source.on('end', function() {
    21. self.push(null);
    22. });
    23. // give it a kick whenever the source is readable
    24. // read(0) will not consume any bytes
    25. source.on('readable', function() {
    26. self.read(0);
    27. });
    28. this._rawHeader = [];
    29. this.header = null;
    30. }
    31. SimpleProtocol.prototype._read = function(n) {
    32. if (!this._inBody) {
    33. var chunk = this._source.read();
    34. // if the source doesn't have data, we don't have data yet.
    35. if (chunk === null)
    36. return this.push('');
    37. // check if the chunk has a \n\n
    38. var split = -1;
    39. for (var i = 0; i < chunk.length; i++) {
    40. if (chunk[i] === 10) { // '\n'
    41. if (this._sawFirstCr) {
    42. split = i;
    43. break;
    44. } else {
    45. this._sawFirstCr = true;
    46. }
    47. } else {
    48. }
    49. }
    50. if (split === -1) {
    51. // still waiting for the \n\n
    52. // stash the chunk, and try again.
    53. this._rawHeader.push(chunk);
    54. this.push('');
    55. } else {
    56. this._inBody = true;
    57. var h = chunk.slice(0, split);
    58. this._rawHeader.push(h);
    59. var header = Buffer.concat(this._rawHeader).toString();
    60. try {
    61. this.header = JSON.parse(header);
    62. } catch (er) {
    63. this.emit('error', new Error('invalid simple protocol data'));
    64. return;
    65. }
    66. // now, because we got some extra data, unshift the rest
    67. // back into the read queue so that our consumer will see it.
    68. var b = chunk.slice(split);
    69. this.unshift(b);
    70. // and let them know that we are done parsing the header.
    71. this.emit('header', this.header);
    72. }
    73. } else {
    74. // from there on, just provide the data to our consumer.
    75. // careful not to push(null), since that would indicate EOF.
    76. var chunk = this._source.read();
    77. if (chunk) this.push(chunk);
    78. }
    79. };
    80. // Usage:
    81. // var parser = new SimpleProtocol(source);
    82. // Now parser is a readable stream that will emit 'header'
    83. // with the parsed header data.

    new stream.Readable([options])

    • options {Object}
      • highWaterMark {Number} The maximum number of bytes to store in
        the internal buffer before ceasing to read from the underlying
        resource. Default=16kb, or 16 for objectMode streams
      • encoding {String} If specified, then buffers will be decoded to
        strings using the specified encoding. Default=null
      • objectMode {Boolean} Whether this stream should behave
        as a stream of objects. Meaning that stream.read(n) returns
        a single value instead of a Buffer of size n. Default=false

    In classes that extend the Readable class, make sure to call the
    Readable constructor so that the buffering settings can be properly
    initialized.

    readable._read(size)

    • size {Number} Number of bytes to read asynchronously

    Note: Implement this function, but do NOT call it directly.

    This function should NOT be called directly. It should be implemented
    by child classes, and only called by the internal Readable class
    methods.

    All Readable stream implementations must provide a _read method to
    fetch data from the underlying resource.

    This method is prefixed with an underscore because it is internal to
    the class that defines it, and should not be called directly by user
    programs. However, you are expected to override this method in
    your own extension classes.

    When data is available, put it into the read queue by calling
    readable.push(chunk). If push returns false, then you should stop
    reading. When _read is called again, you should start pushing more
    data.

    The size argument is advisory. Implementations where a “read” is a
    single call that returns data can use this to know how much data to
    fetch. Implementations where that is not relevant, such as TCP or
    TLS, may ignore this argument, and simply provide data whenever it
    becomes available. There is no need, for example to “wait” until
    size bytes are available before calling stream.push(chunk).

    readable.push(chunk[, encoding])

    • chunk {Buffer | null | String} Chunk of data to push into the read queue
    • encoding {String} Encoding of String chunks. Must be a valid
      Buffer encoding, such as 'utf8' or 'ascii'
    • return {Boolean} Whether or not more pushes should be performed

    Note: This function should be called by Readable implementors, NOT
    by consumers of Readable streams.

    The _read() function will not be called again until at least one
    push(chunk) call is made.

    The Readable class works by putting data into a read queue to be
    pulled out later by calling the read() method when the 'readable'
    event fires.

    The push() method will explicitly insert some data into the read
    queue. If it is called with null then it will signal the end of the
    data (EOF).

    This API is designed to be as flexible as possible. For example,
    you may be wrapping a lower-level source which has some sort of
    pause/resume mechanism, and a data callback. In those cases, you
    could wrap the low-level source object by doing something like this:

    1. // source is an object with readStop() and readStart() methods,
    2. // and an `ondata` member that gets called when it has data, and
    3. // an `onend` member that gets called when the data is over.
    4. util.inherits(SourceWrapper, Readable);
    5. function SourceWrapper(options) {
    6. Readable.call(this, options);
    7. this._source = getLowlevelSourceObject();
    8. var self = this;
    9. // Every time there's data, we push it into the internal buffer.
    10. this._source.ondata = function(chunk) {
    11. // if push() returns false, then we need to stop reading from source
    12. if (!self.push(chunk))
    13. };
    14. // When the source ends, we push the EOF-signaling `null` chunk
    15. this._source.onend = function() {
    16. self.push(null);
    17. };
    18. }
    19. // _read will be called when the stream wants to pull more data in
    20. // the advisory size argument is ignored in this case.
    21. SourceWrapper.prototype._read = function(size) {
    22. this._source.readStart();
    23. };

    stream.Writable is an abstract class designed to be extended with an
    underlying implementation of the _write(chunk, encoding, callback) method.

    new stream.Writable([options])

    • options {Object}
      • highWaterMark {Number} Buffer level when write() starts
        returning false. Default=16kb, or 16 for objectMode streams
      • decodeStrings {Boolean} Whether or not to decode strings into
        Buffers before passing them to . Default=true
      • objectMode {Boolean} Whether or not the write(anyObj) is
        a valid operation. If set you can write arbitrary data instead
        of only Buffer / String data. Default=false

    In classes that extend the Writable class, make sure to call the
    constructor so that the buffering settings can be properly
    initialized.

    writable._write(chunk, encoding, callback)

    • chunk {Buffer | String} The chunk to be written. Will always
      be a buffer unless the decodeStrings option was set to false.
    • encoding {String} If the chunk is a string, then this is the
      encoding type. Ignore if chunk is a buffer. Note that chunk will
      always be a buffer unless the decodeStrings option is
      explicitly set to false.
    • callback {Function} Call this function (optionally with an error
      argument) when you are done processing the supplied chunk.

    All Writable stream implementations must provide a
    method to send data to the underlying resource.

    Note: This function MUST NOT be called directly. It should be
    implemented by child classes, and called by the internal Writable
    class methods only.

    Call the callback using the standard callback(error) pattern to
    signal that the write completed successfully or with an error.

    If the decodeStrings flag is set in the constructor options, then
    chunk may be a string rather than a Buffer, and encoding will
    indicate the sort of string that it is. This is to support
    implementations that have an optimized handling for certain string
    data encodings. If you do not explicitly set the decodeStrings
    option to false, then you can safely ignore the encoding argument,
    and assume that chunk will always be a Buffer.

    This method is prefixed with an underscore because it is internal to
    the class that defines it, and should not be called directly by user
    programs. However, you are expected to override this method in
    your own extension classes.

    writable._writev(chunks, callback)

    • chunks {Array} The chunks to be written. Each chunk has following
      format: { chunk: ..., encoding: ... }.
    • callback {Function} Call this function (optionally with an error
      argument) when you are done processing the supplied chunks.

    Note: This function MUST NOT be called directly. It may be
    implemented by child classes, and called by the internal Writable
    class methods only.

    This function is completely optional to implement. In most cases it is
    unnecessary. If implemented, it will be called with all the chunks
    that are buffered in the write queue.

    Class: stream.Duplex

    A “duplex” stream is one that is both Readable and Writable, such as a
    TCP socket connection.

    Note that stream.Duplex is an abstract class designed to be extended
    with an underlying implementation of the _read(size) and
    _write(chunk, encoding, callback) methods as you would with a
    Readable or Writable stream class.

    Since JavaScript doesn’t have multiple prototypal inheritance, this
    class prototypally inherits from Readable, and then parasitically from
    Writable. It is thus up to the user to implement both the lowlevel
    _read(n) method as well as the lowlevel
    method on extension duplex classes.

    new stream.Duplex(options)

    • options {Object} Passed to both Writable and Readable
      constructors. Also has the following fields:
      • allowHalfOpen {Boolean} Default=true. If set to false, then
        the stream will automatically end the readable side when the
        writable side ends and vice versa.
      • readableObjectMode {Boolean} Default=false. Sets objectMode
        for readable side of the stream. Has no effect if objectMode
        is true.
      • writableObjectMode {Boolean} Default=false. Sets objectMode
        for writable side of the stream. Has no effect if objectMode
        is true.

    In classes that extend the Duplex class, make sure to call the
    constructor so that the buffering settings can be properly
    initialized.

    Class: stream.Transform

    A “transform” stream is a duplex stream where the output is causally
    connected in some way to the input, such as a zlib stream or a
    stream.

    There is no requirement that the output be the same size as the input,
    the same number of chunks, or arrive at the same time. For example, a
    Hash stream will only ever have a single chunk of output which is
    provided when the input is ended. A zlib stream will produce output
    that is either much smaller or much larger than its input.

    Rather than implement the _read() and methods, Transform
    classes must implement the _transform() method, and may optionally
    also implement the _flush() method. (See below.)

    new stream.Transform([options])

    • options {Object} Passed to both Writable and Readable
      constructors.

    In classes that extend the Transform class, make sure to call the
    constructor so that the buffering settings can be properly
    initialized.

    transform._transform(chunk, encoding, callback)

    • chunk {Buffer | String} The chunk to be transformed. Will always
      be a buffer unless the decodeStrings option was set to false.
    • encoding {String} If the chunk is a string, then this is the
      encoding type. (Ignore if decodeStrings chunk is a buffer.)
    • callback {Function} Call this function (optionally with an error
      argument and data) when you are done processing the supplied chunk.

    Note: This function MUST NOT be called directly. It should be
    implemented by child classes, and called by the internal Transform
    class methods only.

    All Transform stream implementations must provide a _transform
    method to accept input and produce output.

    _transform should do whatever has to be done in this specific
    Transform class, to handle the bytes being written, and pass them off
    to the readable portion of the interface. Do asynchronous I/O,
    process things, and so on.

    Call transform.push(outputChunk) 0 or more times to generate output
    from this input chunk, depending on how much data you want to output
    as a result of this chunk.

    Call the callback function only when the current chunk is completely
    consumed. Note that there may or may not be output as a result of any
    particular input chunk. If you supply a data chunk as the second argument
    to the callback function it will be passed to push method, in other words
    the following are equivalent:

    1. transform.prototype._transform = function (data, encoding, callback) {
    2. this.push(data);
    3. callback();
    4. }
    5. transform.prototype._transform = function (data, encoding, callback) {
    6. callback(null, data);
    7. }

    This method is prefixed with an underscore because it is internal to
    the class that defines it, and should not be called directly by user
    programs. However, you are expected to override this method in
    your own extension classes.

    transform._flush(callback)

    • callback {Function} Call this function (optionally with an error
      argument) when you are done flushing any remaining data.

    Note: This function MUST NOT be called directly. It MAY be implemented
    by child classes, and if so, will be called by the internal Transform
    class methods only.

    In some cases, your transform operation may need to emit a bit more
    data at the end of the stream. For example, a Zlib compression
    stream will store up some internal state so that it can optimally
    compress the output. At the end, however, it needs to do the best it
    can with what is left, so that the data will be complete.

    In those cases, you can implement a _flush method, which will be
    called at the very end, after all the written data is consumed, but
    before emitting end to signal the end of the readable side. Just
    like with _transform, call transform.push(chunk) zero or more
    times, as appropriate, and call callback when the flush operation is
    complete.

    This method is prefixed with an underscore because it is internal to
    the class that defines it, and should not be called directly by user
    programs. However, you are expected to override this method in
    your own extension classes.

    Events: ‘finish’ and ‘end’

    The finish and events are from the parent Writable
    and Readable classes respectively. The finish event is fired after
    .end() is called and all chunks have been processed by _transform,
    end is fired after all data has been output which is after the callback
    in _flush has been called.

    Example: SimpleProtocol parser v2

    The example above of a simple protocol parser can be implemented
    simply by using the higher level stream class, similar to
    the parseHeader and SimpleProtocol v1 examples above.

    In this example, rather than providing the input as an argument, it
    would be piped into the parser, which is a more idiomatic Node stream
    approach.

    1. var util = require('util');
    2. var Transform = require('stream').Transform;
    3. util.inherits(SimpleProtocol, Transform);
    4. function SimpleProtocol(options) {
    5. if (!(this instanceof SimpleProtocol))
    6. return new SimpleProtocol(options);
    7. Transform.call(this, options);
    8. this._inBody = false;
    9. this._sawFirstCr = false;
    10. this._rawHeader = [];
    11. this.header = null;
    12. }
    13. SimpleProtocol.prototype._transform = function(chunk, encoding, done) {
    14. if (!this._inBody) {
    15. // check if the chunk has a \n\n
    16. var split = -1;
    17. for (var i = 0; i < chunk.length; i++) {
    18. if (chunk[i] === 10) { // '\n'
    19. if (this._sawFirstCr) {
    20. split = i;
    21. break;
    22. } else {
    23. this._sawFirstCr = true;
    24. }
    25. } else {
    26. this._sawFirstCr = false;
    27. }
    28. }
    29. if (split === -1) {
    30. // still waiting for the \n\n
    31. // stash the chunk, and try again.
    32. this._rawHeader.push(chunk);
    33. } else {
    34. this._inBody = true;
    35. var h = chunk.slice(0, split);
    36. this._rawHeader.push(h);
    37. var header = Buffer.concat(this._rawHeader).toString();
    38. try {
    39. this.header = JSON.parse(header);
    40. } catch (er) {
    41. this.emit('error', new Error('invalid simple protocol data'));
    42. return;
    43. }
    44. // and let them know that we are done parsing the header.
    45. this.emit('header', this.header);
    46. // now, because we got some extra data, emit this first.
    47. this.push(chunk.slice(split));
    48. }
    49. } else {
    50. // from there on, just provide the data to our consumer as-is.
    51. this.push(chunk);
    52. }
    53. done();
    54. };
    55. // Usage:
    56. // var parser = new SimpleProtocol();
    57. // source.pipe(parser)
    58. // Now parser is a readable stream that will emit 'header'
    59. // with the parsed header data.

    Class: stream.PassThrough

    This is a trivial implementation of a stream that simply
    passes the input bytes across to the output. Its purpose is mainly
    for examples and testing, but there are occasionally use cases where
    it can come in handy as a building block for novel sorts of streams.

    Both Writable and Readable streams will buffer data on an internal
    object called _writableState.buffer or _readableState.buffer,
    respectively.

    The amount of data that will potentially be buffered depends on the
    highWaterMark option which is passed into the constructor.

    Buffering in Readable streams happens when the implementation calls
    stream.push(chunk). If the consumer of the Stream does not call
    stream.read(), then the data will sit in the internal queue until it
    is consumed.

    Buffering in Writable streams happens when the user calls
    repeatedly, even when write() returns false.

    The purpose of streams, especially with the pipe() method, is to
    limit the buffering of data to acceptable levels, so that sources and
    destinations of varying speed will not overwhelm the available memory.

    stream.read(0)

    There are some cases where you want to trigger a refresh of the
    underlying readable stream mechanisms, without actually consuming any
    data. In that case, you can call stream.read(0), which will always
    return null.

    If the internal read buffer is below the highWaterMark, and the
    stream is not currently reading, then calling read(0) will trigger
    a low-level _read call.

    There is almost never a need to do this. However, you will see some
    cases in Node’s internals where this is done, particularly in the
    Readable stream class internals.

    stream.push('')

    Pushing a zero-byte string or Buffer (when not in Object mode) has an
    interesting side effect. Because it is a call to
    , it will end the reading process. However, it
    does not add any data to the readable buffer, so there’s nothing for
    a user to consume.

    Very rarely, there are cases where you have no data to provide now,
    but the consumer of your stream (or, perhaps, another bit of your own
    code) will know when to check again, by calling stream.read(0). In
    those cases, you may call stream.push('').

    So far, the only use case for this functionality is in the
    tls.CryptoStream class, which is deprecated in Node v0.12. If you
    find that you have to use stream.push(''), please consider another
    approach, because it almost certainly indicates that something is
    horribly wrong.

    Compatibility with Older Node Versions

    In versions of Node prior to v0.10, the Readable stream interface was
    simpler, but also less powerful and less useful.

    • Rather than waiting for you to call the read() method, 'data'
      events would start emitting immediately. If you needed to do some
      I/O to decide how to handle data, then you had to store the chunks
      in some kind of buffer so that they would not be lost.
    • The pause() method was advisory, rather than guaranteed. This
      meant that you still had to be prepared to receive 'data' events
      even when the stream was in a paused state.

    In Node v0.10, the Readable class described below was added. For
    backwards compatibility with older Node programs, Readable streams
    switch into “flowing mode” when a 'data' event handler is added, or
    when the method is called. The effect is that, even if
    you are not using the new read() method and 'readable' event, you
    no longer have to worry about losing 'data' chunks.

    Most programs will continue to function normally. However, this
    introduces an edge case in the following conditions:

    • No 'data' event handler is added.
    • The method is never called.
    • The stream is not piped to any writable destination.

    For example, consider the following code:

    1. // WARNING! BROKEN!
    2. net.createServer(function(socket) {
    3. // we add an 'end' method, but never consume the data
    4. socket.on('end', function() {
    5. // It will never get here.
    6. socket.end('I got your message (but didnt read it)\n');
    7. });
    8. }).listen(1337);

    In versions of node prior to v0.10, the incoming message data would be
    simply discarded. However, in Node v0.10 and beyond, the socket will
    remain paused forever.

    The workaround in this situation is to call the resume() method to
    start the flow of data:

    1. // Workaround
    2. net.createServer(function(socket) {
    3. socket.on('end', function() {
    4. socket.end('I got your message (but didnt read it)\n');
    5. });
    6. // start the flow of data, discarding it.
    7. socket.resume();

    In addition to new Readable streams switching into flowing mode,
    pre-v0.10 style streams can be wrapped in a Readable class using the
    wrap() method.

    Object Mode

    Normally, Streams operate on Strings and Buffers exclusively.

    Streams that are in object mode can emit generic JavaScript values
    other than Buffers and Strings.

    A Readable stream in object mode will always return a single item from
    a call to stream.read(size), regardless of what the size argument
    is.

    A Writable stream in object mode will always ignore the encoding
    argument to stream.write(data, encoding).

    The special value null still retains its special value for object
    mode streams. That is, for object mode readable streams, null as a
    return value from stream.read() indicates that there is no more
    data, and will signal the end of stream data
    (EOF).

    No streams in Node core are object mode streams. This pattern is only
    used by userland streaming libraries.

    You should set objectMode in your stream child class constructor on
    the options object. Setting objectMode mid-stream is not safe.