Skip to content

Instantly share code, notes, and snippets.

@ckerr
Last active October 25, 2020 17:44
Show Gist options
  • Save ckerr/4e2b53da4dd6357045e46b7af2890f62 to your computer and use it in GitHub Desktop.
Save ckerr/4e2b53da4dd6357045e46b7af2890f62 to your computer and use it in GitHub Desktop.
// Modules to control application life and create native browser window
const { app, BrowserWindow } = require('electron')
function createWindow() {
// Create the browser window.
const mainWindow = new BrowserWindow({
show: false,
// width: 800,
// height: 600,
// frame: false,
transparent: true,
backgroundColor: '#00000000',
})
// mainWindow.maximize()
// mainWindow.loadFile('index.html')
mainWindow.loadFile('minimal.html')
mainWindow.show()
}
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on('ready', createWindow)
// Quit when all windows are closed.
app.on('window-all-closed', function() {
// On macOS it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') app.quit()
})
app.on('activate', function() {
// On macOS it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (BrowserWindow.getAllWindows().length === 0) createWindow()
})
// In this file you can include the rest of your app's specific main process
// code. You can also put them in separate files and require them here.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Draggable div</title>
</head>
<body>
<textarea></textarea>
</body>
</html>
{
"name": "electron-quick-start",
"version": "1.0.0",
"description": "A minimal Electron application",
"main": "main.js",
"scripts": {
"start": "electron ."
},
"repository": "https://github.com/electron/electron-quick-start",
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo"
],
"author": "GitHub",
"license": "CC0-1.0",
"devDependencies": {
"electron": "^10.1.5"
}
}
// All of the Node.js APIs are available in the preload process.
// It has the same sandbox as a Chrome extension.
window.addEventListener('DOMContentLoaded', () => {
const replaceText = (selector, text) => {
const element = document.getElementById(selector)
if (element) element.innerText = text
}
for (const type of ['chrome', 'node', 'electron']) {
replaceText(`${type}-version`, process.versions[type])
}
})
// This file is required by the index.html file and will
// be executed in the renderer process for that window.
// No Node.js APIs are available in this process because
// `nodeIntegration` is turned off. Use `preload.js` to
// selectively enable features needed in the rendering
// process.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment