|
|
4 月之前 | |
|---|---|---|
| .. | ||
| dist | 4 月之前 | |
| es5 | 4 月之前 | |
| polyfill | 4 月之前 | |
| types | 4 月之前 | |
| LICENSE | 4 月之前 | |
| README.md | 4 月之前 | |
| package.json | 4 月之前 | |
Web Streams, based on the WHATWG spec reference implementation.
This library comes in multiple variants:
web-streams-polyfill: a ponyfill that provides the stream implementations
without replacing any globals, targeting ES2015+ environments.
import or require()import/export or <script type="module">web-streams-polyfill/es5: a ponyfill targeting ES5+ environments.
require()web-streams-polyfill/polyfill: a polyfill that replaces the native stream implementations,
targeting ES2015+ environments.
<script>web-streams-polyfill/polyfill/es5: a polyfill targeting ES5+ environments.
<script>Each variant also includes TypeScript type definitions, compatible with the DOM type definitions for streams included in TypeScript.
In version 4, the list of variants was reworked to have more modern defaults and to reduce the download size of the package. See the migration guide for more information.
Usage as a polyfill:
<!-- option 1: hosted by unpkg CDN -->
<script src="https://unpkg.com/web-streams-polyfill/dist/polyfill.js"></script>
<!-- option 2: self hosted -->
<script src="/path/to/web-streams-polyfill/dist/polyfill.js"></script>
<script>
var readable = new ReadableStream();
</script>
Usage as a Node module:
var streams = require("web-streams-polyfill");
var readable = new streams.ReadableStream();
Usage as a ponyfill from within a ES2015 module:
import { ReadableStream } from "web-streams-polyfill";
const readable = new ReadableStream();
Usage as a polyfill from within an ES2015 module:
import "web-streams-polyfill/polyfill";
const readable = new ReadableStream();
The default and polyfill variants work in any ES2015-compatible environment.
The es5 and polyfill/es5 variants work in any ES5-compatible environment that has a global Promise.
If you need to support older browsers or Node versions that do not have a native Promise implementation
(check the support table), you must first include a Promise polyfill
(e.g. promise-polyfill).
Async iterable support for ReadableStream is available in all variants, but requires an ES2018-compatible environment or a polyfill for Symbol.asyncIterator.
WritableStreamDefaultController.signal is available in all variants, but requires a global AbortController constructor. If necessary, consider using a polyfill such as abortcontroller-polyfill.
The polyfill implements version e9355ce (18 Apr 2022) of the streams specification.
The polyfill is tested against the same web platform tests that are used by browsers to test their native implementations. It aims to pass all tests, although it allows some exceptions for practical reasons:
ArrayBuffer, which is not yet possible from JavaScript (although there is a proposal to make it possible).
The reference implementation "cheats" on these tests by making a copy instead, but that is unacceptable for the polyfill's performance (#3).ReadableStream's async iterator.
Retrieving the correct %AsyncIteratorPrototype% requires using an async generator (async function* () {}), which is invalid syntax before ES2018.
Instead, the polyfill creates its own version which is functionally equivalent to the real prototype.Object.prototype.then.
These tests are meant for browsers to ensure user-land modifications cannot affect the internal logic of pipeTo() and tee().
However, it's not reasonable or desirable for a user-land polyfill to try and isolate itself completely from using the global Object.pipeTo() tests that require synchronous inspection of the stream's state (1, 2).
Because the polyfill uses the public getReader() and getWriter() API to implement pipeTo(), it can only asynchronously observe if and when a stream becomes closed or errored.
Therefore, when the readable and the writable end become errored at the exact same time, it's difficult for the polyfill to observe these state changes in exactly the same order.name property of down-leveled constructors is incorrect.length property of down-leveled constructors and methods with optional arguments is incorrect.The type definitions are compatible with the built-in stream types of TypeScript 3.3 and higher.
Thanks to these people for their work on the original polyfill: