Sathira Umesh
Results
1
comments of
Sathira Umesh
enable nodeIntergration when creating the window ``` app.on('ready', () => { console.log('Hello from Electron.'); mainWindow = new BrowserWindow({webPreferences: { nodeIntegration: true }}); mainWindow.webContents.loadFile(path.join(__dirname,"index.html")); mainWindow.webContents.openDevTools(); }); ```