-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
54 lines (41 loc) · 1004 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
const { app, BrowserWindow } = require('electron')
// servidor
const { listen } = require('./server/app')
// puerto
const port = require('./server/port')
// start server
listen(port, () => console.log(`App running on port ${port} 🔥`))
// variable global
let mainWindow
// ventana principal
function createWindow() {
mainWindow = new BrowserWindow({
width: 800,
height: 768,
webPreferences: {
nodeIntegration: true,
},
})
mainWindow.setTitle('')
mainWindow.show()
mainWindow.loadURL(`http://localhost:${port}`)
mainWindow.on('closesd', () => {
mainWindow = null
})
}
/** eventos de la aplicacion */
app.on('ready', () => {
createWindow()
})
app.on('window-all-closed', () => {
// On OS X it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
app.quit()
}
})
app.on('activate', () => {
if (mainWindow === null) {
createWindow()
}
})