I've developed an Electron application that utilizes a BrowserWindow
to showcase a web app.
My goal is to establish communication from the AngularJS web app to the Electron application.
This was my initial idea:
//Web App
window.notify('message', 'hello');
//Electron Application
window.on('message',function(e) {
console.log(e.text);
};
Do you think such interaction is achievable?