mirror of https://github.com/electron/electron
21 lines
362 B
JavaScript
21 lines
362 B
JavaScript
const { app, BrowserWindow } = require('electron');
|
|
|
|
function createWindow () {
|
|
const mainWindow = new BrowserWindow({
|
|
webPreferences: {
|
|
nodeIntegration: true,
|
|
contextIsolation: false
|
|
}
|
|
});
|
|
|
|
mainWindow.on('close', () => {
|
|
app.quit();
|
|
});
|
|
|
|
mainWindow.loadFile('index.html');
|
|
}
|
|
|
|
app.whenReady().then(() => {
|
|
createWindow();
|
|
});
|