SouravJohar / python-app-with-electron-gui

A better way to make GUIs for your python apps
427 stars 158 forks source link

error "request is not defined" #8

Closed ArkanNibrastama closed 1 year ago

ArkanNibrastama commented 4 years ago

how to solve error "request is not defined"?

NouamaneTazi commented 4 years ago

Make sure you add nodeIntegration:true to your mainWindow by adding :

const mainWindow = new BrowserWindow({ width: 800, height: 600, webPreferences: { nodeIntegration: true } })

to createWindow() inside main.js