1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00
denoland-deno/ext/flash
Yusuke Tanaka fd023cf793
fix(ext/flash): graceful server startup/shutdown with unsettled promises in mind (#16616)
This PR resets the revert commit made by #16610, bringing back #16383
which attempts to fix the issue happening when we use the flash server
with `--watch` option enabled.
Also, some code changes are made to pass the regression test added in
#16610.
2022-11-24 18:38:09 +01:00
..
01_http.js fix(ext/flash): graceful server startup/shutdown with unsettled promises in mind (#16616) 2022-11-24 18:38:09 +01:00
Cargo.toml chore: workspace inheritance (#16343) 2022-11-22 21:07:35 +01:00
chunked.rs feat(ext/flash): An optimized http/1.1 server (#15405) 2022-08-18 17:35:02 +05:30
lib.rs fix(ext/flash): graceful server startup/shutdown with unsettled promises in mind (#16616) 2022-11-24 18:38:09 +01:00
README.md feat(unstable): change Deno.serve() API (#15498) 2022-08-19 14:36:01 +02:00
request.rs fix(ext/flash): graceful server startup/shutdown with unsettled promises in mind (#16616) 2022-11-24 18:38:09 +01:00
sendfile.rs Fix: Honor linter rules in CI and locally (#15492) 2022-08-19 08:17:18 -04:00
socket.rs fix(ext/flash): graceful server startup/shutdown with unsettled promises in mind (#16616) 2022-11-24 18:38:09 +01:00

flash

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

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