You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
836 B
JavaScript
41 lines
836 B
JavaScript
5 years ago
|
const { app, BrowserWindow } = require('electron');
|
||
|
const path = require('path');
|
||
|
const url = require('url');
|
||
|
|
||
|
let win;
|
||
|
|
||
|
function createWindow() {
|
||
|
win = new BrowserWindow({ width: 800, height: 600 });
|
||
|
|
||
|
// load the dist folder from Angular
|
||
|
win.loadURL(
|
||
|
url.format({
|
||
|
pathname: path.join(__dirname, `/dist/index.html`),
|
||
|
protocol: 'file:',
|
||
|
slashes: true
|
||
|
})
|
||
|
);
|
||
|
|
||
|
// The following is optional and will open the DevTools:
|
||
|
// win.webContents.openDevTools()
|
||
|
|
||
|
win.on('closed', () => {
|
||
|
win = null;
|
||
|
});
|
||
|
}
|
||
|
|
||
|
app.on('ready', createWindow);
|
||
|
|
||
|
// on macOS, closing the window doesn't quit the app
|
||
|
app.on('window-all-closed', () => {
|
||
|
if (process.platform !== 'darwin') {
|
||
|
app.quit();
|
||
|
}
|
||
|
});
|
||
|
|
||
|
// initialize the app's main window
|
||
|
app.on('activate', () => {
|
||
|
if (win === null) {
|
||
|
createWindow();
|
||
|
}
|
||
|
});
|