mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
5beec3f106
- Merge "Deno.serve()" and "Deno.serveTls()" API - Remove first argument and use "fetch" field options instead - Update type declarations - Add more documentation
7 lines
133 B
Markdown
7 lines
133 B
Markdown
# flash
|
|
|
|
Flash is a fast HTTP/1.1 server implementation for Deno.
|
|
|
|
```js
|
|
serve({ fetch: (req) => new Response("Hello World") });
|
|
```
|