mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
9d1e24b67b
Original: 1ea76ca797
15 lines
382 B
TypeScript
15 lines
382 B
TypeScript
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
import { serve } from "./server.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) {
|
|
request.respond({ status: 200, body });
|
|
}
|
|
}
|
|
|
|
main();
|