===Webページをロード===
----
*loadURLとすることで、外部ページをロードできる
<pre>
*[https://service.typea.info/blogwiki Webページ]をElectronアプリ化
[[File:electron_web_app.png|500px]]
===モーダルダイアログ===
<pre>
function createWindow() {
let win = new BrowserWindow({
width: 800,
height: 600,
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
});
child.loadFile('dialog.html');
}
</pre>