☆解決方法 メインプロセス側のBrowserWindow作成時にnodeIntegrationをtrueにする レンダラーのhtmlで読み込むjsファイルはrequireを使う ★メインプロセス app.on('ready', () => { mainWindow = new BrowserWindow({ webPreferences: { nodeIntegration: true } }); }); BrowserWindowの初期化時にはwebPreferencesのnodeIntegrationをtrueに設定。 ★レンダラープロセス(html) <script> require('./index.js') </script> requireでjsファイルを読み込む ★参照元 stackoverflow.com ☆nodeIntegrationのデフォルト値はV5で変わったらしい