36 lines
699 B
JavaScript
36 lines
699 B
JavaScript
|
const { app, BrowserWindow, Notification } = require('electron')
|
||
|
|
||
|
function createWindow () {
|
||
|
const win = new BrowserWindow({
|
||
|
width: 800,
|
||
|
height: 600,
|
||
|
webPreferences: {
|
||
|
nodeIntegration: true
|
||
|
}
|
||
|
})
|
||
|
|
||
|
win.loadFile('index.html')
|
||
|
}
|
||
|
|
||
|
function showNotification () {
|
||
|
const notification = {
|
||
|
title: 'Basic Notification',
|
||
|
body: 'Notification from the Main process'
|
||
|
}
|
||
|
new Notification(notification).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()
|
||
|
}
|
||
|
})
|