fetch
fetch copied to clipboard
Fetch Standard
Based on my reading of [blob.slice()](https://w3c.github.io/FileAPI/#dfn-slice), it seems that the resulting blobs content type should be the empty string under the following cases: 1) `contentType` is not given 2) `contentType`...
Towards #973 - [ ] At least two implementers are interested (and none opposed): * Firefox (https://github.com/whatwg/fetch/issues/973#issuecomment-954815921) * Deno (https://github.com/whatwg/fetch/issues/973#issuecomment-902578584) * Cloudflare Workers * Node.js - [x] [Tests](https://github.com/web-platform-tests/wpt) are written...
Keep track of chunk sizes as the response stream is being read. Closes https://github.com/w3c/navigation-timing/issues/124 - [ ] At least two implementers are interested (and none opposed): * … * …...
It would be nice to have a synchronous feature detect for streaming requests. This currently works with the Chrome implementation: ```js const supportsRequestStreams = (() => { let duplexAccessed =...
See [this conversation](https://github.com/w3c/resource-timing/issues/240) I think it's time we consider CORS resources as if they have TAO by default. This will allow the document to receive timing information of resources for...
With request body streams and response body streams one would think it is now possible to use `fetch` for full duplex communication over HTTP, like in the example below: ```js...
The goal of this algorithm is to prevent cross-origin requests from probing the size of sensitive headers (`Authorization` or `Cookie`) by adding headers to cross-site requests until the total size...
In particular, for requests whose method is neither GET nor HEAD due to step 3 of https://fetch.spec.whatwg.org/#append-a-request-origin-header. This is not web-compatible as per https://bugzilla.mozilla.org/show_bug.cgi?id=1632204. This means we need to revisit...
Once https://github.com/whatwg/fetch/pull/1329 is merged, Fetching would return a "controller". To make use of that controller, the following action items need to be resolved: - [x] HTML: Use the controller in...
About a year ago, I refactored how HTTP authentication prompts work in Chrome, and I recently learned (https://bugs.chromium.org/p/chromium/issues/detail?id=1159476) that this refactor is kind of incompatible with fetch() and Service Workers,...