mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
13 lines
284 B
TypeScript
13 lines
284 B
TypeScript
|
const listener = Deno.listen({
|
||
|
port: Number(Deno.args[0]),
|
||
|
});
|
||
|
|
||
|
console.log("READY");
|
||
|
|
||
|
for await (const conn of listener) {
|
||
|
for await (const { request, respondWith } of Deno.serveHttp(conn)) {
|
||
|
const href = new URL(request.url).href;
|
||
|
respondWith(new Response(href));
|
||
|
}
|
||
|
}
|