Complex inter-process communication between Electron windows
5Each Electron window runs as a separate process with no easy way to share data between them. IPC implementation and broadcastChannel API have limitations like non-shared memory and inability to pass non-standard data types.
architectureElectronIPC