js.node.stream

..
Chunk

Duplex

Duplex streams are streams that implement both the Readable and Writable interfaces.

DuplexEvent

Writable streams are an abstraction for a destination to which data is written.

DuplexNewOptions

Passed to both Writable and Readable constructors. Also has the following fields:

IDuplex

IReadable

IReadable interface is used as "any Readable".

ITransform

IWritable

Writable interface used for type parameter constraints. See Writable for actual class documentation.

PassThrough

The stream.PassThrough class is a trivial implementation of a Transform stream that simply passes the input bytes across to the output. Its purpose is primarily for examples and testing, but there are some use cases where stream.PassThrough is useful as a building block for novel sorts of streams.

Readable

See also:

ReadableEvent

Readable streams are an abstraction for a source from which data is consumed.

ReadableNewOptions

Options for Readable private constructor. For stream implementors only, see node.js API documentation

Transform

A Transform stream is a Duplex stream where the output is computed in some way from the input. Examples include zlib streams or crypto streams that compress, encrypt, or decrypt data.

TransformNewOptions

See also:

Writable

The Writable stream interface is an abstraction for a destination that you are writing data to.

WritableEvent

Writable streams are an abstraction for a destination to which data is written.

WritableNewOptions

See also:

WritableNewOptionsAdapter