Electron Postman is an easy-to-use wrapper around Electron's built-in IPC library.
Features:
- Similar IPC methods in main and renderer process
- Easy and direct window-to-window communication
- Integrates smoothly in
nodeIntegration
disabled andcontextIsolation
enabled BrowserWindows - Allows
invoke
calls not only from renderer to main process, but also the other way around
You can register windows on creation. The window registration is broadcasted to all other windows automatically.
// main.js
ipcMain.registerBrowserWindow('window-a', windowA);
From now on, windows can communicate directly with each other.
// windowB.js
ipcRenderer.sendTo('window-a', 'channel-name', args);
If you implement Electron's security recommandations and have disabled node integration and enabled context isolation for browser windows, you can expose Electron Postman easily via a preload script.
// preload.js
ipcRenderer.exposeInMainWorld('ipc');
// windowA.js
window.ipc.invokeTo('window-b').then((result) => console.log(result));
Yarn:
yarn add electron-postman
npm:
npm install electron-postman
- Register a window before its content is loaded.
// main.js
const { ipcMain } = require('electron-postman');
// ...
const mainWindow = createMainWindow();
ipcMain.registerBrowserWindow('main-window', mainWindow);
mainWindow.loadFile(path);
- (Optional) If using a preload script, expose the API to the renderer process.
// preload.js
const { ipcRenderer } = require('electron-postman');
ipcRenderer.exposeInMainWorld('ipc');
- Send, invoke, handle and receive messages in main and in renderer processes.
windowName
StringbrowserWindow
BrowserWindow
Registers the window and is made known with all other existing windows.
windowName
Stringchannel
String...args
any[]
Send an asynchronous message to the renderer process via channel
, along with
arguments. Requires that windowName
is a registered window. The renderer
process can handle the message by listening to channel
.
windowName
Stringchannel
Stringlistener
Function...args
any[]
Listen to messages on channel
from window windowName
. Requires that
windowName
is a registered window.
windowName
Stringchannel
Stringlistener
Function...args
any[]
Same as ipcMain.on
, but listener is removed once a message on channel
was received.
windowName
Stringchannel
String...args
any[]
Returns Promise<any>
- Resolves with the response from the other process.
Send a message to windowName
via channel
and expect a result asynchronously.
The other process should listen for channel with ipcMain.handle()
or
ipcRenderer.handle()
respectively.
windowName
Stringchannel
Stringlistener
Function...args
any[]
Adds a handler for an invokeable IPC. This handler will be called whenever a
renderer calls ipcRenderer.invoke(channel, ...args)
or
ipcRenderer.invokeTo('main', channel, ...args
.
If listener returns a Promise, the eventual result of the promise will be returned as a reply to the remote caller. Otherwise, the return value of the listener will be used as the value of the reply.
windowName
Stringchannel
Stringlistener
Function...args
any[]
Same as ipcMain.handle
, but handler is removed once an invoke call was handled.
windowName
Stringchannel
String
Removes all listeners registered on windowName
and channel
.
windowName
Stringchannel
String
Removes handler, registered on windowame
and channel
.
Each process is addressed with its process name (processName
). For a renderer
process, its process name is the registered window name (renderer-to-renderer
communication), the main process has the process name 'main'
(renderer-to-main
communication).
apiKey
String
Exposes the IPC renderer API to context isolated renderer process. Works only,
if contextIsolation
is enabled for that window. Uses Electron's
contextBridge
API.
channel
String...args
any[]
Equivalent to ipcRenderer.sendTo('main', channel, ...args)
.
processName
Stringchannel
String...args
any[]
Send an asynchronous message to the process registered as processName
via
channel
, along with arguments. The receiving process can handle the message by
listening to channel
.
processName
Stringchannel
Stringlistener
Function...args
any[]
Listen to messages on channel
from process processName
.
processName
Stringchannel
Stringlistener
Function...args
any[]
Same as ipcMain.on
, but listener is removed once a message on channel
was received.
processName
Stringchannel
String...args
any[]
Equivalent to ipcRenderer.invokeTo('main', channel, ...args)
.
processName
Stringchannel
String...args
any[]
Returns Promise<any>
- Resolves with the response from the other process.
Send a message to windowName
via channel
and expect a result asynchronously.
The other process should listen for channel with ipcMain.handle()
or
ipcRenderer.handle()
respectively.
processName
Stringchannel
Stringlistener
Function...args
any[]
Adds a handler for an invokeable IPC. This handler will be called whenever a process
calls .invoke('this-window-name', channel, ...args)
.
If listener returns a Promise, the eventual result of the promise will be returned as a reply to the remote caller. Otherwise, the return value of the listener will be used as the value of the reply.
processName
Stringchannel
Stringlistener
Function...args
any[]
Same as ipcRenderer.handle
, but handler is removed once an invoke call was handled.
processName
Stringchannel
String
Removes all listeners registered on processName
and channel
.
processName
Stringchannel
String
Removes handler, registered on processName
and channel
.