comlink-electron-endpoint
v1.0.3
Published
Use Comlink to communicate between main and renderer.
Downloads
2
Maintainers
Readme
Comlink Electron Endpoint
Makes Electron MessagePortMain enjoyable.
Example
renderer.js
import * as Comlink from "comlink"
import { ipcRenderer } from "electron";
import { electronEndpoint } from "comlink-electron-endpoint/renderer";
async function init() {
// Create MessagePorts
const { port1, port2 } = new MessageChannel();
// Send one end to the main process
ipcRenderer.postMessage('comlink-port', null, [port1]);
// create an electronEndpoint from the other end
const endpoint = electronEndpoint(port2);
// wrap the endpoint to proxy the remote object
const obj = Comlink.wrap(endpoint);
// call functions on remote object
alert(`Counter: ${await obj.counter}`);
await obj.inc();
alert(`Counter: ${await obj.counter}`);
}
init();
main.js
import * as Comlink from 'comlink';
import { ipcMain } from 'electron';
import { electronEndpoint } from 'comlink-electron-endpoint/main';
ipcMain.on('comlink-port', (event) => {
// object to be exposed to renderer
const obj = {
counter: 0,
inc() {
this.counter++;
},
};
// When we receive a MessagePort in the main process, it becomes a
// MessagePortMain.
const port = event.ports[0];
// create the endpoint for comlink and expose obj
const endpoint = electronEndpoint(port);
Comlink.expose(obj, endpoint);
});