-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
33 lines (26 loc) · 813 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
'use strict';
const { app, BrowserWindow } = require('electron')
const path = require('path')
const url = require('url')
// Prevent the main app window from being garbage collected
let mainWindow
function createWindow() {
// Create the main window for the app
mainWindow = new BrowserWindow({ width: 800, height: 600/*, webPreferences: { devTools: false }*/ })
// Load the main index page of the app
mainWindow.loadURL(url.format({
pathname: path.join(__dirname, '/app/index.html'),
protocol: 'file',
slashes: true
}))
// Handle closing the window (thus the app)
mainWindow.on('closed', () => {
mainWindow = null;
})
}
// Create the window on app start
app.on('ready', createWindow)
// Quit when all windows are closed.
app.on('window-all-closed', () => {
app.quit()
})