electron-better-ipc
electron-better-ipc copied to clipboard
Support ipcRenderer to ipcRenderer communication
Communication between the rendering process and the rendering process, how to do use this moudle ,Is there an example?
That's currently not supported. You can implement it yourself though by having a router in the main process that receives events from one renderer process and proxies it to another one.
Can use ipcRenderer.sendTo
if you know the webContentId in advance.