-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
36 lines (31 loc) · 856 Bytes
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
const { app, globalShortcut, BrowserWindow } = require('electron');
app.commandLine.appendSwitch("ignore-certificate-errors");
let mainWindow;
function createWindow() {
mainWindow = new BrowserWindow({
autoHideMenuBar: true,
width: 900,
height: 650,
webPreferences: {
nodeIntegration: true
}
});
mainWindow.loadURL(`file://${__dirname}/index.html`);
//mainWindow.webContents.openDevTools();
mainWindow.on("close", () => {
mainWindow.webContents.send("stop-server");
});
mainWindow.on("closed", () => {
mainWindow = null;
});
}
app.on("window-all-closed", function () {
if (process.platform !== "darwin") {
app.quit();
}
});
app.whenReady().then(() => {
globalShortcut.register("Alt+CommandOrControl+L", () => {
mainWindow.webContents.send("show-server-log");
})
}).then(createWindow);