From d458a866e65d67bf48c5dd53657429ae58718c1d Mon Sep 17 00:00:00 2001 From: Hyperling Date: Thu, 25 Jun 2026 15:34:28 -0700 Subject: [PATCH] Add a URL to the output for ease of opening. --- main.js | 1 + 1 file changed, 1 insertion(+) diff --git a/main.js b/main.js index 5743555..a0cf85c 100755 --- a/main.js +++ b/main.js @@ -282,6 +282,7 @@ async function main() { ports.forEach(port => { app.listen(port); console.log(" * Now listening on port " + port + "."); + console.log(" * URL: http://localhost:" + port); }); console.log("Done! Now we wait..."); }