*[https://service.typea.info/blogwiki Webページ]をElectronアプリ化
[[File:electron_web_app.png|500px]]
====モーダルダイアログ====
----
<pre>
function createWindow() {
let win = new BrowserWindow({
width: 600,
height: 400,
webPreference: {
nodeIntegration: true
}
});
// win.loadURL('https://service.typea.info/blogwiki');
win.loadFile('index.html');
let child = new BrowserWindow({
width: 400,
height: 200,
parent: win,
frame: false,
modal: true,
transparent: true,
opacity: 0.5
});
child.loadFile('dialog.html');
}</pre>
[[File:electron_modal_dialog.png|400px]]
==appオブジェクトのイベント==