mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
.. | ||
file_server_test.ts | ||
file_server.ts | ||
http_bench.ts | ||
http_status.ts | ||
http_test.ts | ||
http.ts | ||
mod.ts | ||
README.md |
http
A framework for creating HTTP/HTTPS server.
Example
import { serve } from "https://deno.land/x/http/mod.ts";
const s = serve("0.0.0.0:8000");
async function main() {
for await (const req of s) {
req.respond({ body: new TextEncoder().encode("Hello World\n") });
}
}
main();
File Server
A small program for serving local files over HTTP.
Add the following to your .bash_profile
alias file_server="deno https://deno.land/x/http/file_server.ts --allow-net"