Interactive login first phase.

This commit is contained in:
2026-01-27 07:43:57 +01:00
parent 347aee10fd
commit 6dc72ab8d2
8 changed files with 203 additions and 21 deletions

13
bin/open-browser.js Normal file
View File

@@ -0,0 +1,13 @@
import open from "open";
async function openBrowser(url) {
try {
await open(url);
console.log(`Browser opened to ${url}`);
} catch (error) {
console.error(`Failed to open browser: ${error}`);
}
}
const urlToOpen = "https://jmespath-playground.koszewscy.waw.pl";
openBrowser(urlToOpen);