We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f08c64 commit 00e1ea7Copy full SHA for 00e1ea7
doc/api/stream.md
@@ -16,6 +16,7 @@ are both stream instances.
16
Streams can be readable, writable, or both. All streams are instances of
17
[`EventEmitter`][].
18
19
+```markdown
20
To access the `node:stream` module:
21
22
```js
@@ -24,6 +25,9 @@ const stream = require('node:stream');
24
25
26
The `node:stream` module is useful for creating new types of stream instances.
27
It is usually not necessary to use the `node:stream` module to consume streams.
28
+For common tasks like reading a stream into a string or buffer, the
29
+[`node:stream/consumers`](webstreams.md#utility-consumers) module provides
30
+convenient utility functions.
31
32
## Organization of this document
33
0 commit comments