5e033cb7f8
* remove version info from index.html page * remove nodeIntegration * format code and update readme * add note to user in index.html
31 lines
687 B
JavaScript
31 lines
687 B
JavaScript
const { app, BrowserWindow, Notification } = require('electron')
|
|
|
|
function createWindow () {
|
|
const win = new BrowserWindow({
|
|
width: 800,
|
|
height: 600
|
|
})
|
|
|
|
win.loadFile('index.html')
|
|
}
|
|
|
|
const NOTIFICATION_TITLE = 'Basic Notification'
|
|
const NOTIFICATION_BODY = 'Notification from the Main process'
|
|
|
|
function showNotification () {
|
|
new Notification({ title: NOTIFICATION_TITLE, body: NOTIFICATION_BODY }).show()
|
|
}
|
|
|
|
app.whenReady().then(createWindow).then(showNotification)
|
|
|
|
app.on('window-all-closed', () => {
|
|
if (process.platform !== 'darwin') {
|
|
app.quit()
|
|
}
|
|
})
|
|
|
|
app.on('activate', () => {
|
|
if (BrowserWindow.getAllWindows().length === 0) {
|
|
createWindow()
|
|
}
|
|
})
|