@@ -46,8 +46,9 @@ There are four fundamental stream types within Node.js:
46
46
* [ ` Transform ` ] [ ] - ` Duplex ` streams that can modify or transform the data as it
47
47
is written and read (for example, [ ` zlib.createDeflate() ` ] [ ] ).
48
48
49
- Additionally, this module includes the utility functions [ pipeline] [ ] ,
50
- [ finished] [ ] and [ Readable.from] [ ] .
49
+ Additionally, this module includes the utility functions
50
+ [ ` stream.pipeline() ` ] [ ] , [ ` stream.finished() ` ] [ ] and
51
+ [ ` stream.Readable.from() ` ] [ ] .
51
52
52
53
### Object Mode
53
54
@@ -1496,7 +1497,7 @@ async function run() {
1496
1497
run ().catch (console .error );
1497
1498
```
1498
1499
1499
- ### Readable.from(iterable, [ options] )
1500
+ ### stream. Readable.from(iterable, [ options] )
1500
1501
1501
1502
* ` iterable ` {Iterable} Object implementing the ` Symbol.asyncIterator ` or
1502
1503
` Symbol.iterator ` iterable protocol.
@@ -2458,7 +2459,7 @@ and async iterators are provided below.
2458
2459
#### Creating Readable Streams with Async Generators
2459
2460
2460
2461
We can construct a Node.js Readable Stream from an asynchronous generator
2461
- using the ` Readable.from ` utility method:
2462
+ using the ` Readable.from() ` utility method:
2462
2463
2463
2464
``` js
2464
2465
const { Readable } = require (' stream' );
@@ -2499,10 +2500,10 @@ const writeable = fs.createWriteStream('./file');
2499
2500
```
2500
2501
2501
2502
In the above, errors on the write stream would be caught and thrown by the two
2502
- ` once ` listeners, since ` once ` will also handle ` 'error' ` events.
2503
+ ` once() ` listeners, since ` once() ` will also handle ` 'error' ` events.
2503
2504
2504
- Alternatively the readable stream could be wrapped with ` Readable.from ` and
2505
- then piped via ` .pipe ` :
2505
+ Alternatively the readable stream could be wrapped with ` Readable.from() ` and
2506
+ then piped via ` .pipe() ` :
2506
2507
2507
2508
``` js
2508
2509
const { once } = require (' events' );
@@ -2642,8 +2643,11 @@ contain multi-byte characters.
2642
2643
[ `process.stdin` ] : process.html#process_process_stdin
2643
2644
[ `process.stdout` ] : process.html#process_process_stdout
2644
2645
[ `readable.push('')` ] : #stream_readable_push
2646
+ [ `stream.Readable.from()` ] : #stream_stream_readable_from_iterable_options
2645
2647
[ `stream.cork()` ] : #stream_writable_cork
2648
+ [ `stream.finished()` ] : #stream_stream_finished_stream_options_callback
2646
2649
[ `stream.pipe()` ] : #stream_readable_pipe_destination_options
2650
+ [ `stream.pipeline()` ] : #stream_stream_pipeline_streams_callback
2647
2651
[ `stream.uncork()` ] : #stream_writable_uncork
2648
2652
[ `stream.unpipe()` ] : #stream_readable_unpipe_destination
2649
2653
[ `stream.wrap()` ] : #stream_readable_wrap_stream
@@ -2655,18 +2659,15 @@ contain multi-byte characters.
2655
2659
[ Compatibility ] : #stream_compatibility_with_older_node_js_versions
2656
2660
[ HTTP requests, on the client ] : http.html#http_class_http_clientrequest
2657
2661
[ HTTP responses, on the server ] : http.html#http_class_http_serverresponse
2658
- [ Readable.from ] : #readable.from
2659
2662
[ TCP sockets ] : net.html#net_class_net_socket
2660
2663
[ child process stdin ] : child_process.html#child_process_subprocess_stdin
2661
2664
[ child process stdout and stderr ] : child_process.html#child_process_subprocess_stdout
2662
2665
[ crypto ] : crypto.html
2663
- [ finished ] : #stream_stream_finished_stream_options_callback
2664
2666
[ fs read streams ] : fs.html#fs_class_fs_readstream
2665
2667
[ fs write streams ] : fs.html#fs_class_fs_writestream
2666
2668
[ http-incoming-message ] : http.html#http_class_http_incomingmessage
2667
2669
[ hwm-gotcha ] : #stream_highwatermark_discrepancy_after_calling_readable_setencoding
2668
2670
[ object-mode ] : #stream_object_mode
2669
- [ pipeline ] : #stream_stream_pipeline_streams_callback
2670
2671
[ readable-_destroy ] : #stream_readable_destroy_err_callback
2671
2672
[ readable-destroy ] : #stream_readable_destroy_error
2672
2673
[ stream-_final ] : #stream_writable_final_callback
0 commit comments