Skip to content Skip to sidebar Skip to footer

Electron: Send Message From Browserwindow To Electron App

I have an Electron app which uses a BrowserWindow to display a web app. I want to be able to send a message from the angularjs web app to the Electron app. I had something like thi

Solution 1:

You can use ipcMain and ipcRenderer for sending messages between the main script and the client script.


Post a Comment for "Electron: Send Message From Browserwindow To Electron App"