I have Electron application. There is websocket connection between server and client side of electron app (another words, I use websocket
on index.html
).
I need to close websocket connection, when user closes the application. What event should I use for it?
There is mainWindow.on('closed', () => { });
but I have no access to browser code at this point.
You should use IPC (Internal Process Communication). In the electron framework, there are two processes:
These two can communicate together using IPC. For more details see docs