stream library
Node.js "stream" module bindings.
Classes
- Duplex
- Duplex streams are streams that implement both the Readable and Writable interfaces.
- Readable
- ReadableOptions
- StreamModule
- Transform
- Transform streams are Duplex streams where the output is in some way related to the input.
- Writable
- WritableOptions
Properties
- stream → StreamModule
-
The "stream" module's object as returned from require call.
no setter
Functions
-
createReadable(
ReadableOptions options) → Readable -
Creates custom Readable stream with provided
options
. -
createWritable(
WritableOptions options) → Writable -
Creates custom Writable stream with provided
options
.