Send sync message from IpcMain to IpcRenderer – Electron
There is no such functionality of ipcMain *. However, you can achieve almost the same result asynchronously with the following steps: Place your code which you would run only after the synchronous call in an ipcMain callback. Reply to ipc message in renderer process with the result using event.sender.send A dummy example of calculating sum … Read more