Skip to content

Instantly share code, notes, and snippets.

@erickzhao
Created March 30, 2020 23:38
Show Gist options
  • Save erickzhao/0e484bced996b94c5f94b81a0cc97d71 to your computer and use it in GitHub Desktop.
Save erickzhao/0e484bced996b94c5f94b81a0cc97d71 to your computer and use it in GitHub Desktop.
Electron Fiddle Gist
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
<link rel="stylesheet" type="text/css" href="./styles.css">
</head>
<body>
<h1>Hello World!</h1>
<!-- All of the Node.js APIs are available in this renderer process. -->
We are using Node.js <script>document.write(process.versions.node)</script>,
Chromium <script>document.write(process.versions.chrome)</script>,
and Electron <script>document.write(process.versions.electron)</script>.
<script>
// You can also require other files to run in this process
require('./renderer.js')
</script>
</body>
</html>
// Modules to control application life and create native browser window
const {app, BrowserWindow, Menu} = require('electron')
function createWindow () {
const mainWindow = new BrowserWindow({
width: 800,
height: 600,
webPreferences: {
nodeIntegration: true
}
})
mainWindow.loadFile('index.html')
// BEGIN custom hide logic
let isQuitting = false;
app.on('before-quit', () => {
isQuitting = true
})
mainWindow.on('close', (event) => {
if (!isQuitting) {
event.preventDefault();
Menu.sendActionToFirstResponder('hide:')
}
})
// END custom hide logic
}
app.on('ready', createWindow)
app.on('window-all-closed', function () {
if (process.platform !== 'darwin') {
app.quit()
}
})
app.on('activate', function (event, hasVisibleWindows) {
if (!hasVisibleWindows) {
createWindow()
}
})
// This file is required by the index.html file and will
// be executed in the renderer process for that window.
// All of the Node.js APIs are available in this process.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment