1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 15:24:46 -05:00
denoland-deno/ext/fetch
Matt Mastracci 42c426e769
feat(ext/websocket): websockets over http2 (#21040)
Implements `WebSocket` over http/2. This requires a conformant http/2
server supporting the extended connect protocol.

Passes approximately 100 new WPT tests (mostly `?wpt_flags=h2` versions
of existing websockets APIs).

This is implemented as a fallback when http/1.1 fails, so a server that
supports both h1 and h2 WebSockets will still end up on the http/1.1
upgrade path.

The patch also cleas up the websockets handshake to split it up into
http, https+http1 and https+http2, making it a little less intertwined.

This uncovered a likely bug in the WPT test server:
https://github.com/web-platform-tests/wpt/issues/42896
2023-11-01 21:11:01 +00:00
..
20_headers.js fix(ext/web): writability of ReadableStream.from (#20836) 2023-10-10 05:01:01 +02:00
21_formdata.js fix(ext/web): writability of ReadableStream.from (#20836) 2023-10-10 05:01:01 +02:00
22_body.js fix(ext/fetch): clone second branch chunks in Body.clone() (#20057) 2023-08-15 09:21:02 +02:00
22_http_client.js refactor: Use ES modules for internal runtime code (#17648) 2023-02-07 20:22:46 +01:00
23_request.js fix(ext/web): writability of ReadableStream.from (#20836) 2023-10-10 05:01:01 +02:00
23_response.js fix(ext/web): writability of ReadableStream.from (#20836) 2023-10-10 05:01:01 +02:00
26_fetch.js feat(ext/web): EventSource (#14730) 2023-10-31 18:16:27 +01:00
27_eventsource.js feat(ext/web): EventSource (#14730) 2023-10-31 18:16:27 +01:00
Cargo.toml chore: forward v1.37.2 release commit to main (#20897) 2023-10-13 03:12:06 +00:00
fs_fetch_handler.rs refactor(ext/fetch): Remove FetchRequestBodyResource from FetchHandler interface (#20100) 2023-08-09 10:47:47 -06:00
internal.d.ts refactor: remove remaining references to "flash" server (#18580) 2023-04-04 12:37:56 +02:00
lib.deno_fetch.d.ts fix(dts): make globals available on globalThis (#19438) 2023-07-03 14:36:55 -04:00
lib.rs feat(ext/websocket): websockets over http2 (#21040) 2023-11-01 21:11:01 +00:00
README.md Rename extensions/ directory to ext/ (#11643) 2021-08-11 12:27:05 +02:00

deno_fetch

This crate implements the Fetch API.

Spec: https://fetch.spec.whatwg.org/