A tiny RPC library that works on windows, iframes, WebWorkers and ServiceWorkers.
With Comlink you can work on values from another JavaScript realm
(like a Worker or an iframe) as if it was a local value. Just use await
whenever using the remote value.
Anything that works with postMessage
can be used as a communication channel.
You can download Comlink from the dist folder. Alternatively, you can install it via npm
$ npm install --save comlinkjs
or use a CDN like delivrjs:
https://cdn.jsdelivr.net/npm/[email protected]/comlink.es6.min.js
Size: ~3.1k, ~1.3k gzip’d.
There’s more examples in the examples directory.
<-- index.html -->
<!doctype html>
<script src="../../dist/comlink.global.js"></script>
<script>
const worker = new Worker('worker.js');
// WebWorkers use `postMessage` and therefore work with Comlink.
const api = Comlink.proxy(worker);
async function init() {
// Note the usage of `await`:
const app = await new api.App();
alert(`Counter: ${await app.count}`);
await app.inc();
alert(`Counter: ${await app.count}`);
};
init();
</script>
// worker.js
importScripts('../dist/comlink.global.js');
class App {
constructor() {
this._counter = 0;
}
get count() {
return this._counter;
}
inc() {
this._counter++;
}
}
Comlink.expose({App}, self);
The Comlink module is provided in 3 different formats:
-
“es6”: This package uses the native ES6 module format. Due to some necessary hackery, the module exports a
Comlink
object. Import it as follows:import {Comlink} from '../dist/comlink.es6.js'; // ...
-
“global”: This package adds a
Comlink
namespace onself
. Useful for workers or projects without a module loader. -
“umd”: This package uses UMD so it is compatible with AMD, CommonJS and requireJS.
These packages can be mixed and matched. A worker using global
can be
connected to a window using es6
. For the sake of network conservation, I do
recommend sticking to one format, though.
The Comlink module exports 3 functions:
proxy
creates an ES6 proxy and sends all operations performed on that proxy
through the channel behind endpoint
. endpoint
can be a Window
, a Worker
or a MessagePort
.* The other endpoint of the channel should be passed to
expose
.
Note that all parameters for a function or method invocations will be
structurally cloned or transferred if they are transferable. If you want to
pass use functions as parameters (e.g. callbacks), make sure to wrap them with
proxyValue
(see below).
*) Technically it can be any object with postMessage
, addEventListener
and
removeEventListener
.
expose
is the counter-part to proxy
. It listens for RPC messages on
endpoint
and applies the operations to rootObj
. Return values of functions
will be structurally cloned or transfered if they are transferable. The same
restrictions as for proxy
apply.
If structurally cloning a value is undesired (either for a function parameter or
a function’s return value), wrapping the value in a proxyValue
call will proxy
that value instead. This is necessary for callback functions being passed
around:
// main.js
const worker = new Worker('worker.js');
const doStuff = Comlink.proxy(worker);
await doStuff(result => console.log(result));
// worker.js
Comlink.expose(async function (f) {
const result = /* omg so expensive */;
/* f is a proxy, as if created by proxy(). So we need to use `await. */
await f(result);
}, self);
MessageChannelAdapter
is a small utility function that turns string-based
communication channels – like a WebSocket, RTCDataChannel or
PresentationConnection – into a Comlink-compatible postMessage
-based API
that can transfer MessagePorts
.
See the examples, specifically WebRTC and Presentation API.
wrap
returns a MessagePort
that serializes messages using JSON.stringify
and handles transferred MessagePort
s automatically. endpoint
is expected to
have send
and addEventListener
.
License Apache-2.0