mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
968d508425
Move typescript files to net/
Original: 99e276eb89
15 lines
341 B
TypeScript
15 lines
341 B
TypeScript
import * as deno from "deno";
|
|
import { serve } from "./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();
|