Rimless makes event based communication easy with a promise-based API wrapping postMessage. Works with iframes, webworkers, and Node.js worker threads.
You can use rimless
to call remote procedures, exchange data or expose local functions with iframes, webworkers, or Node.js workers.
You can see it in action in the code sandbox below:
Rimless can be installed via npm.
$ npm i -S @jam.dev/rimless
or from a CDN
<script src="https://unpkg.com/@jam.dev%2Frimless/lib/rimless.min.js"></script>
Below is a minimal but complete round‑trip that shows how each side can:
- expose variables and functions,
- read the other side’s variables,
- invoke the other side’s functions,
- finally close the link.
Host (page that embeds the iframe)
import { host } from "@jam.dev/rimless";
const iframe = document.getElementById("myIframe");
// Everything inside this object is exported to the guest
const hostApi = {
someHostVariable: 12,
someHostFunction: (value) => `hello ${value}`,
};
const connection = await host.connect(iframe, hostApi);
// ↘︎ Access data that the iframe exposed
console.log(connection.remote.someGuestVariable); // → 42
// ↘︎ Call a guest‑side RPC and await its result
const result = await connection.remote.someGuestFunction("here");
console.log(result); // → "hello here"
// Done talking? Tear down the channel.
connection.close();
Guest (code that runs inside the iframe)
import { guest } from "@jam.dev/rimless";
// The object you pass to guest.connect is your public surface
const guestApi = {
someGuestVariable: 42,
someGuestFunction: (value) => `hello ${value}`,
};
const connection = await guest.connect(guestApi);
// ↗︎ Read a host‑side value
console.log(connection.remote.someHostVariable); // → 12
// ↗︎ Invoke a host‑side RPC
const res = await connection.remote.someHostFunction("there");
console.log(res); // → "hello there"
// Close when finished to free resources
connection.close();
What to remember
-
connection.remote
is the automatically generated proxy for the other side’s exports. - Every remote call returns a Promise, so feel free to await it.
- Always call
connection.close()
when you no longer need the tunnel—this removes event listeners and avoids memory leaks.
This is how you can connect your website to an iframe or webworker:
import { host } from "@jam.dev/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 "@jam.dev/rimless";
// connect to the parent website
guest.connect();
Usage from a webworker:
importScripts("https://unpkg.com/@jam.dev%2Frimless/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 serializable 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 "@jam.dev/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 "@jam.dev/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");
});
Every RPC handler you expose receives the caller’s method collection as its last parameter—conventionally named remote
.
That means an RPC can immediately call back into the opposite context to acknowledge success, return extra data, or kick‑off a follow‑up action.
Why it’s useful
- Confirm completion – send a quick “done!” message when a long‑running task finishes.
- Chain operations – perform a host‑side update, then ask the guest to re‑render.
- Stream results – push incremental data to the caller instead of waiting for one big response.
// host (parent window)
import { host } from "rimless";
const api = {
/**
* Change the page background, then notify the guest.
* @param {string} color Hex or CSS color string
* @param {object} remote Automatically injected guest‑side RPCs
*/
setColor: (color, remote) => {
document.body.style.background = color;
remote.logMessage("Background updated ✔");
},
};
const iframe = document.getElementById("myIframe");
host.connect(iframe, api);
// guest (inside the iframe)
import { guest } from "rimless";
const api = {
/** Show messages from the host */
logMessage: (msg) => console.log(msg),
};
const { remote } = await guest.connect(api);
// Ask the host to change its background.
// Afterwards, the guest will receive logMessage("Background updated ✔").
remote.setColor("#011627");
Key points
- Handler signature – (…args, remote); you can ignore remote if you don’t need it.
- Promises everywhere – RPC calls return promises, so you can await remote.someMethod().
- Keep it short – avoid deep call‑chains that bounce endlessly between host and guest.
Closing a connection will remove all event listeners that were registered.
import { guest } from "@jam.dev/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 serializable. 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!
- works with Node.js worker threads
- 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
- remote RPC handlers receive the caller's API as the last argument
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 | - |
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 | - |
eventHandlers |
object |
lifecycle callbacks like onConnectionSetup
|
- |
onConnectionSetup(remote)
is called once the handshake completes. It receives the remote API so you can perform setup logic before using the connection.