1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-02 17:01:14 -05:00
denoland-deno/http_bench.ts
2018-12-06 17:19:34 -05:00

15 lines
363 B
TypeScript

import * as deno from "deno";
import { serve } from "https://deno.land/x/net/http.ts";
const addr = deno.args[1] || "127.0.0.1:4500";
const server = serve(addr);
const body = new TextEncoder().encode("Hello World");
async function main(): Promise<void> {
for await (const request of server) {
await request.respond({ status: 200, body });
}
}
main();