deno/ext/flash
Bartek Iwańczuk 204c46dcc1
chore: forward v1.26.2 to main (#16331)
Co-authored-by: bartlomieju <bartlomieju@users.noreply.github.com>

<!--
Before submitting a PR, please read http://deno.land/manual/contributing

1. Give the PR a descriptive title.

  Examples of good title:
    - fix(std/http): Fix race condition in server
    - docs(console): Update docstrings
    - feat(doc): Handle nested reexports

  Examples of bad title:
    - fix #7123
    - update docs
    - fix bugs

2. Ensure there is a related issue and it is referenced in the PR text.
3. Ensure there are tests that cover the changes.
4. Ensure `cargo test` passes.
5. Ensure `./tools/format.js` passes without changing files.
6. Ensure `./tools/lint.js` passes.
-->

Co-authored-by: denobot <33910674+denobot@users.noreply.github.com>
Co-authored-by: bartlomieju <bartlomieju@users.noreply.github.com>
2022-10-17 23:11:16 +02:00
..
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 chore: forward v1.26.2 to main (#16331) 2022-10-17 23:11:16 +02:00
chunked.rs feat(ext/flash): An optimized http/1.1 server (#15405) 2022-08-18 17:35:02 +05:30
lib.rs feat(core): improve resource read & write traits (#16115) 2022-10-09 14:49:25 +00: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") });