Skip to content

Instantly share code, notes, and snippets.

@KimuraTakaumi
Last active April 3, 2016 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KimuraTakaumi/46d0a4a5c0692ee73e62310b14e96a2c to your computer and use it in GitHub Desktop.
Save KimuraTakaumi/46d0a4a5c0692ee73e62310b14e96a2c to your computer and use it in GitHub Desktop.
ElectronでNotificationを表示する(レンダラープロセス)
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
<script type="text/javascript">
function notification() {
new Notification("Hello World");
}
</script>
</head>
<body>
<h1>Hello World!</h1>
<button onclick="notification()">notification</button>
</body>
</html>
'use strict';
const electron = require('electron');
const app = electron.app;
const BrowserWindow = electron.BrowserWindow;
var mainWindow;
function createWindow() {
mainWindow = new BrowserWindow({width: 800, height: 600});
mainWindow.loadURL('file://' + __dirname + '/index.html');
// Open the DevTools.
// mainWindow.webContents.openDevTools();
mainWindow.on('closed', function () {
mainWindow = null;
});
}
app.on('ready', function () {
createWindow();
});
app.on('window-all-closed', function () {
if (process.platform !== 'darwin') {
app.quit();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment