Skip to content

Commit fc80fac

Browse files
committed
stream: graduate web streams from experimental and expose as globals
1 parent acc11c9 commit fc80fac

File tree

10 files changed

+376
-121
lines changed

10 files changed

+376
-121
lines changed

.eslintrc.js

+17
Original file line numberDiff line numberDiff line change
@@ -317,11 +317,28 @@ module.exports = {
317317
'node-core/no-duplicate-requires': 'error',
318318
},
319319
globals: {
320+
ByteLengthQueuingStrategy: 'readable',
321+
CompressionStream: 'readable',
322+
CountQueuingStrategy: 'readable',
320323
Crypto: 'readable',
321324
CryptoKey: 'readable',
325+
DecompressionStream: 'readable',
322326
fetch: 'readable',
323327
FormData: 'readable',
328+
ReadableStream: 'readable',
329+
ReadableStreamDefaultReader: 'readable',
330+
ReadableStreamBYOBReader: 'readable',
331+
ReadableStreamBYOBRequest: 'readable',
332+
ReadableByteStreamController: 'readable',
333+
ReadableStreamDefaultController: 'readable',
324334
Response: 'readable',
335+
TextDecoderStream: 'readable',
336+
TextEncoderStream: 'readable',
337+
TransformStream: 'readable',
338+
TransformStreamDefaultController: 'readable',
325339
SubtleCrypto: 'readable',
340+
WritableStream: 'readable',
341+
WritableStreamDefaultWriter: 'readable',
342+
WritableStreamDefaultController: 'readable',
326343
},
327344
};

doc/api/globals.md

+153
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,14 @@ added: v0.1.103
229229

230230
Used to handle binary data. See the [buffer section][].
231231

232+
## Class: `ByteLengthQueuingStrategy`
233+
234+
<!-- YAML
235+
added: REPLACEME
236+
-->
237+
238+
A browser-compatible implementation of [`ByteLengthQueuingStrategy`][].
239+
232240
## `__dirname`
233241

234242
This variable may appear to be global but is not. See [`__dirname`][].
@@ -295,6 +303,14 @@ added: v0.0.1
295303

296304
[`clearTimeout`][] is described in the [timers][] section.
297305

306+
## Class: `CompressionStream`
307+
308+
<!-- YAML
309+
added: REPLACEME
310+
-->
311+
312+
A browser-compatible implementation of [`CompressionStream`][].
313+
298314
## `console`
299315

300316
<!-- YAML
@@ -307,6 +323,14 @@ added: v0.1.100
307323

308324
Used to print to stdout and stderr. See the [`console`][] section.
309325

326+
## Class: `CountQueuingStrategy`
327+
328+
<!-- YAML
329+
added: REPLACEME
330+
-->
331+
332+
A browser-compatible implementation of [`CountQueuingStrategy`][].
333+
310334
## `Crypto`
311335

312336
<!-- YAML
@@ -344,6 +368,14 @@ A browser-compatible implementation of {CryptoKey}. This global is available
344368
only if the Node.js binary was compiled with including support for the
345369
`crypto` module.
346370

371+
## Class: `DecompressionStream`
372+
373+
<!-- YAML
374+
added: REPLACEME
375+
-->
376+
377+
A browser-compatible implementation of [`DecompressionStream`][].
378+
347379
## `Event`
348380

349381
<!-- YAML
@@ -516,6 +548,54 @@ DataHandler.prototype.load = async function load(key) {
516548
};
517549
```
518550

551+
## Class: `ReadableByteStreamController`
552+
553+
<!-- YAML
554+
added: REPLACEME
555+
-->
556+
557+
A browser-compatible implementation of [`ReadableByteStreamController`][].
558+
559+
## Class: `ReadableStream`
560+
561+
<!-- YAML
562+
added: REPLACEME
563+
-->
564+
565+
A browser-compatible implementation of [`ReadableStream`][].
566+
567+
## Class: `ReadableStreamBYOBReader`
568+
569+
<!-- YAML
570+
added: REPLACEME
571+
-->
572+
573+
A browser-compatible implementation of [`ReadableStreamBYOBReader`][].
574+
575+
## Class: `ReadableStreamBYOBRequest`
576+
577+
<!-- YAML
578+
added: REPLACEME
579+
-->
580+
581+
A browser-compatible implementation of [`ReadableStreamBYOBRequest`][].
582+
583+
## Class: `ReadableStreamDefaultController`
584+
585+
<!-- YAML
586+
added: REPLACEME
587+
-->
588+
589+
A browser-compatible implementation of [`ReadableStreamDefaultController`][].
590+
591+
## Class: `ReadableStreamDefaultReader`
592+
593+
<!-- YAML
594+
added: REPLACEME
595+
-->
596+
597+
A browser-compatible implementation of [`ReadableStreamDefaultReader`][].
598+
519599
## `require()`
520600

521601
This variable may appear to be global but is not. See [`require()`][].
@@ -615,6 +695,14 @@ added: v11.0.0
615695

616696
The WHATWG `TextDecoder` class. See the [`TextDecoder`][] section.
617697

698+
## Class: `TextDecoderStream`
699+
700+
<!-- YAML
701+
added: REPLACEME
702+
-->
703+
704+
A browser-compatible implementation of [`TextDecoderStream`][].
705+
618706
## `TextEncoder`
619707

620708
<!-- YAML
@@ -625,6 +713,30 @@ added: v11.0.0
625713

626714
The WHATWG `TextEncoder` class. See the [`TextEncoder`][] section.
627715

716+
## Class: `TextEncoderStream`
717+
718+
<!-- YAML
719+
added: REPLACEME
720+
-->
721+
722+
A browser-compatible implementation of [`TextEncoderStream`][].
723+
724+
## Class: `TransformStream`
725+
726+
<!-- YAML
727+
added: REPLACEME
728+
-->
729+
730+
A browser-compatible implementation of [`TransformStream`][].
731+
732+
## Class: `TransformStreamDefaultController`
733+
734+
<!-- YAML
735+
added: REPLACEME
736+
-->
737+
738+
A browser-compatible implementation of [`TransformStreamDefaultController`][].
739+
628740
## `URL`
629741

630742
<!-- YAML
@@ -659,19 +771,60 @@ The object that acts as the namespace for all W3C
659771
[WebAssembly][webassembly-org] related functionality. See the
660772
[Mozilla Developer Network][webassembly-mdn] for usage and compatibility.
661773

774+
## Class: `WritableStream`
775+
776+
<!-- YAML
777+
added: REPLACEME
778+
-->
779+
780+
A browser-compatible implementation of [`WritableStream`][].
781+
782+
## Class: `WritableStreamDefaultController`
783+
784+
<!-- YAML
785+
added: REPLACEME
786+
-->
787+
788+
A browser-compatible implementation of [`WritableStreamDefaultController`][].
789+
790+
## Class: `WritableStreamDefaultWriter`
791+
792+
<!-- YAML
793+
added: REPLACEME
794+
-->
795+
796+
A browser-compatible implementation of [`WritableStreamDefaultWriter`][].
797+
662798
[Web Crypto API]: webcrypto.md
663799
[`--experimental-global-webcrypto`]: cli.md#--experimental-global-webcrypto
664800
[`--no-experimental-fetch`]: cli.md#--no-experimental-fetch
665801
[`AbortController`]: https://developer.mozilla.org/en-US/docs/Web/API/AbortController
802+
[`ByteLengthQueuingStrategy`]: webstreams.md#class-bytelengthqueuingstrategy
803+
[`CompressionStream`]: webstreams.md#class-compressionstream
804+
[`CountQueuingStrategy`]: webstreams.md#class-countqueuingstrategy
666805
[`DOMException`]: https://developer.mozilla.org/en-US/docs/Web/API/DOMException
806+
[`DecompressionStream`]: webstreams.md#class-decompressionstream
667807
[`EventTarget` and `Event` API]: events.md#eventtarget-and-event-api
668808
[`MessageChannel`]: worker_threads.md#class-messagechannel
669809
[`MessageEvent`]: https://developer.mozilla.org/en-US/docs/Web/API/MessageEvent/MessageEvent
670810
[`MessagePort`]: worker_threads.md#class-messageport
811+
[`ReadableByteStreamController`]: webstreams.md#class-readablebytestreamcontroller
812+
[`ReadableStreamBYOBReader`]: webstreams.md#class-readablestreambyobreader
813+
[`ReadableStreamBYOBRequest`]: webstreams.md#class-readablestreambyobrequest
814+
[`ReadableStreamDefaultController`]: webstreams.md#class-readablestreamdefaultcontroller
815+
[`ReadableStreamDefaultReader`]: webstreams.md#class-readablestreamdefaultreader
816+
[`ReadableStream`]: webstreams.md#class-readablestream
817+
[`TextDecoderStream`]: webstreams.md#class-textdecoderstream
671818
[`TextDecoder`]: util.md#class-utiltextdecoder
819+
[`TextEncoderStream`]: webstreams.md#class-textencoderstream
672820
[`TextEncoder`]: util.md#class-utiltextencoder
821+
[`TransformStreamDefaultController`]: webstreams.md#class-transformstreamdefaultcontroller
822+
[`TransformStream`]: webstreams.md#class-transformstream
673823
[`URLSearchParams`]: url.md#class-urlsearchparams
674824
[`URL`]: url.md#class-url
825+
[`WritableStreamDefaultController`]: webstreams.md#class-writablestreamdefaultcontroller
826+
[`WritableStreamDefaultWriter`]: webstreams.md#class-writablestreamdefaultwriter
827+
[`WritableStream`]: webstreams.md#class-writablestream
675828
[`__dirname`]: modules.md#__dirname
676829
[`__filename`]: modules.md#__filename
677830
[`buffer.atob()`]: buffer.md#bufferatobdata

0 commit comments

Comments
 (0)