26 lines
447 B
JavaScript
26 lines
447 B
JavaScript
|
const { BrowserWindow, app } = require('electron')
|
||
|
|
||
|
let mainWindow = null
|
||
|
|
||
|
function createWindow () {
|
||
|
const windowOptions = {
|
||
|
width: 600,
|
||
|
height: 300,
|
||
|
title: 'Take a Screenshot',
|
||
|
webPreferences: {
|
||
|
nodeIntegration: true
|
||
|
}
|
||
|
}
|
||
|
|
||
|
mainWindow = new BrowserWindow(windowOptions)
|
||
|
mainWindow.loadFile('index.html')
|
||
|
|
||
|
mainWindow.on('closed', () => {
|
||
|
mainWindow = null
|
||
|
})
|
||
|
}
|
||
|
|
||
|
app.on('ready', () => {
|
||
|
createWindow()
|
||
|
})
|