From 8c45d3a06d90bd0ab13d38b6a1f892f67e80f78e Mon Sep 17 00:00:00 2001 From: Chris Knight Date: Fri, 15 May 2020 14:35:50 +0100 Subject: doc: add stream api (#5418) --- cli/js/web/README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'cli/js') diff --git a/cli/js/web/README.md b/cli/js/web/README.md index e44a87315..f220c0da6 100644 --- a/cli/js/web/README.md +++ b/cli/js/web/README.md @@ -20,9 +20,6 @@ Some of the Web APIs are using ops under the hood, eg. `console`, `performance`. to work with DOM events - **Implementation notes:** There is no DOM hierarchy in Deno, so there is no tree for Events to bubble/capture through. -- [URL](https://developer.mozilla.org/en-US/docs/Web/API/URL) and - [URLSearchParams](https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams): - to construct and parse URLSs - [fetch](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch), [Request](https://developer.mozilla.org/en-US/docs/Web/API/Request), [Response](https://developer.mozilla.org/en-US/docs/Web/API/Response), @@ -38,6 +35,11 @@ Some of the Web APIs are using ops under the hood, eg. `console`, `performance`. [clearTimeout](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/clearTimeout): scheduling callbacks in future and [clearInterval](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/clearInterval) +- [Stream](https://developer.mozilla.org/en-US/docs/Web/API/Streams_API) for + creating, composing, and consuming streams of data +- [URL](https://developer.mozilla.org/en-US/docs/Web/API/URL) and + [URLSearchParams](https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams): + to construct and parse URLSs - [Worker](https://developer.mozilla.org/en-US/docs/Web/API/Worker): executing additional code in a separate thread - **Implementation notes:** Blob URLs are not supported, object ownership -- cgit v1.2.3