mirror of
https://github.com/denoland/deno.git
synced 2024-12-17 21:03:01 -05:00
592e90c3c2
Original: f10ea7317e
16 lines
416 B
TypeScript
16 lines
416 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> {
|
|
console.log(`http://${addr}/`);
|
|
for await (const request of server) {
|
|
request.respond({ status: 200, body });
|
|
}
|
|
}
|
|
|
|
main();
|