Rimless makes event based communication easy with a promise-based API wrapping postMessage. Works with both iframes and webworkers.
You can use rimless
to call remote procedures, exchange data or expose local functions with iframes/webworkers.
You can see it in action in the code sandbox below:
Rimless can be installed via npm.
$ npm i -S rimless
or from a CDN
<script src="https://unpkg.com/rimless/lib/rimless.min.js"></script>
in the host website
import { host } from "rimless";
const connection = await host.connect(iframe, {
someHostVariable: 12,
someHostFunction: (value) => `hello ${value}`,
});
// access variables on the iframe
console.log(connection.remote.someGuestVariable); // 42
// call remote procedures on the iframe
const result = await connection.remote.someGuestFunction("here");
console.log(result); // hello here
// close the connection
connection.close();
in the iframe
import { guest } from "rimless";
const connection = await guest.connect({
someGuestVariable: 42,
someGuestFunction: (value) => `hello ${value}`,
});
// access variables on the host
console.log(connection.remote.someHostVariable); // 12
// call remote procedures on host
const res = await connection.remote.someHostFunction("there");
console.log(res); // hello there
// close the connection
connection.close();
This is how you can connect your website to an iframe or webworker:
import { host } from "rimless";
const iframe = document.getElementById("myIframe");
const worker = new Worker("myWorker");
// connect to the iframe
host.connect(iframe);
// connect to the worker
host.connect(worker);
You also need to connect your iframe/webworker to the host website.
Usage from an iframe:
import { guest } from "rimless";
// connect to the parent website
guest.connect();
Usage from a webworker:
importScripts("https://unpkg.com/rimless/lib/rimless.min.js");
const { guest } = rimless;
// connect to the parent website
guest.connect();
To do anything meaningful with this connection you need to provide a schema that defines the API of the host/iframe/webworker. Any serializeable values as well as functions are ok to use. In the example below the host website provides a function that will update its background color when invoked.
import { host } from "rimless";
const api = {
setColor: (color) => {
document.body.style.background = color;
},
};
const iframe = document.getElementById("myIframe");
host.connect(iframe, api);
The api schema must be passed on connection, the same applies to the iframe/webworker
.
With the host API exposed we can now invoke the remote procedure from the iframe.
import { guest } from "rimless";
// connect returns a promise that resolves in a connection object
// `connection.remote` contains the api you can invoke
guest.connect().then((connection) => {
connection.remote.setColor("#011627");
});
Closing a connection will remove all event listeners that were registered.
import { guest } from "rimless";
guest.connect().then((connection) => {
connection.close();
});
- The guest (iframe/webworker) sends a handshake request to the host with a schema describing its API
- The host confirms the handshake and returns a schema with its own API
Now both can make use of the APIs they have shared with each other, e.g.
- The guest requests
someAction
on the parent. - After verifying the origin, the parent will execute the function mapped to
someAction
and the result is returned to the guest.
All parameters passed through postMessage
need to be serializeable. This applies also for all return values of the functions you expose.
// someFunction would return undefined when called in the remote.
const api = {
someFunction: () => () => {},
};
This library is inspired by Postmate and Penpal.
- works with webworkers!
- does not create the iframe (easier to work with libraries like react)
- works with iframes using srcdoc
- works with multiple iframes from the same origin
Rimless exports two objects: host
and guest
.
Connect your website to a "guest" (iframe/webworker).
host.connect(iframe, {
log: (value) => console.log(value),
});
Name | Type | Description | Required |
---|---|---|---|
guest |
HTMLIFrameElement or Worker |
Target of the connection | required |
schema |
object |
schema of the api you want to expose | - |
options |
object |
- | - |
Connect a "guest" to your website. The guest connection automatically happens based on the environment it is run.
guest.connect({
log: (value) => console.log(value),
});
Name | Type | Description | Default |
---|---|---|---|
schema |
object |
schema of the api you want to expose | - |
options |
object |
- | - |