I implemented a simple electron application that loads my application using win.loadURL(‘http://app.com:3000’) and now the application works as if it was in a browser, which is what I wanted.
Sometimes I need to send from electron main to my meteor client a message/event and on this event I need my client to perform an action, e.g. Router.go(‘foo’).
I tried the example from https://www.electronjs.org/docs/api/ipc-main but I am not too sure how can I implement the renderer in my meteor code.