summaryrefslogtreecommitdiff
path: root/cli/js
diff options
context:
space:
mode:
authorChris Knight <cknight1234@gmail.com>2020-05-15 14:35:50 +0100
committerGitHub <noreply@github.com>2020-05-15 09:35:50 -0400
commit8c45d3a06d90bd0ab13d38b6a1f892f67e80f78e (patch)
treeb73c388bf5abd8dcf6b053a4b2b570c4c9805f3d /cli/js
parent3e07e0b01d91a5ea428719ca99bc732c0ee1be94 (diff)
doc: add stream api (#5418)
Diffstat (limited to 'cli/js')
-rw-r--r--cli/js/web/README.md8
1 files changed, 5 insertions, 3 deletions
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