1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/ext/flash
ayame113 b5425ae2d3
fix(ext/flash): Avoid sending Content-Length when status code is 204 (#15901)
Currently Content-Length is sent when the status code is 204. However,
according to the spec, this should not be sent.
Modify the if statement below to prevent the Content-Length from being
sent.
2022-10-05 12:21:59 +05:30
..
01_http.js fix(ext/flash): Avoid sending Content-Length when status code is 204 (#15901) 2022-10-05 12:21:59 +05:30
Cargo.toml 1.26.0 2022-09-29 00:10:44 +02:00
chunked.rs feat(ext/flash): An optimized http/1.1 server (#15405) 2022-08-18 17:35:02 +05:30
lib.rs refactor(ext/http): remove op_http_read (#16096) 2022-09-30 07:54:12 +02:00
README.md feat(unstable): change Deno.serve() API (#15498) 2022-08-19 14:36:01 +02:00
request.rs fix(ext/flash): concurrent response streams (#15493) 2022-08-19 10:14:56 +05:30
sendfile.rs Fix: Honor linter rules in CI and locally (#15492) 2022-08-19 08:17:18 -04:00
socket.rs fix(ext/flash): retry write failures (#15591) 2022-09-01 18:58:34 +05:30

flash

Flash is a fast HTTP/1.1 server implementation for Deno.

serve({ fetch: (req) => new Response("Hello World") });