This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { serve } from "https://deno.land/std@0.86.0/http/server.ts"; | |
async function サーバ起動後(サーバ: any){ | |
for await (const request of サーバ) { | |
let bodyContent = "Your user-agent is:\n\n"; | |
bodyContent += request.headers.get("user-agent") || "Unknown"; | |
request.respond({ status: 200, body: bodyContent }); | |
} | |
} | |
for(let port=49152; port<=65535 ;port++){ | |
try{ | |
const server = serve({ hostname: "0.0.0.0", port: port }); | |
console.log(`HTTP webserver running. Access it at: http://localhost:` + port + `/`); | |
サーバ起動後(server) | |
break | |
} | |
catch(e){} | |
} |
このページを参照すると、自由に使えるポートは49152かららしいので、上記のようにした。
0 件のコメント:
コメントを投稿