whatwg-streams-api Questions
2
Solved
Is it possible to create a single TransformStream out of several other TransformStreams using whatwg streams (the web Streams API)?
For example, if I have two TransformStreams which run in sequence...
Yama asked 14/6, 2022 at 5:49
2
Solved
I have two ReadableStreams, and I want to pipe them into one WritableStream, where any data that comes through the ReadableStreams goes directly into the WritableStream right then.
I can do the opp...
Serles asked 11/8, 2022 at 1:30
1
What I'm trying to achieve is to make Chrome load a video file as data (via the Fetch API, XHR, whatever) and to play it using <video> while it's still being downloaded without issuing two se...
Delaryd asked 1/9, 2016 at 15:24
1
Solved
Suppose I have a large file I generate client-side that I want to allow the user to save to their hard drive.
The usual method would be to create a Blob, and then create an object URL for it:
const...
Tenno asked 13/7, 2020 at 20:18
2
Solved
Note: I'm not looking for any alternatives. I know this can be done with XMLHttpRequest. I also don't care about browser support. I just want learn about the new/upcoming standards.
I have a File ...
Annadiana asked 20/9, 2018 at 10:11
1
Solved
I'm trying to use fetch with a ReadableStream. In this example, the ReadableStream should simply repeat "Some data..." indefinitely.
fetch('/', {
method: 'POST',
body: new ReadableStream({
pul...
Meza asked 2/12, 2016 at 19:48
1
© 2022 - 2024 — McMap. All rights reserved.