mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
7937ae3f2f
Towards #22079 --------- Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
13 lines
347 B
TypeScript
13 lines
347 B
TypeScript
const listener = Deno.listen({
|
|
port: Number(Deno.args[0]),
|
|
});
|
|
|
|
console.log("READY");
|
|
|
|
for await (const conn of listener) {
|
|
// @ts-ignore `Deno.serveHttp()` was soft-removed in Deno 2.
|
|
for await (const { request, respondWith } of Deno.serveHttp(conn)) {
|
|
const href = new URL(request.url).href;
|
|
respondWith(new Response(href));
|
|
}
|
|
}
|