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.

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