feedless/app/lib/electron.js
2020-04-06 08:26:13 +02:00

7 lines
175 B
JavaScript

const { app, shell } = require("electron");
app.whenReady().then(() => {
let port = process.env.EXPRESS_PORT || 3000;
shell.openExternal(`http://localhost:${port}`);
});