Embed a Rerun Viewer
Integrating the Rerun Viewer into your web application can be accomplished either by utilizing an iframe or by using our JavaScript package.
Embedding app.rerun.io
using an <iframe>
This approach is straightforward and requires minimal setup. However, the drawback is that it lacks programmable control over the web viewer.
<iframe src="https://app.rerun.io/version/{RERUN_VERSION}/index.html?url={RRD_URL}"></iframe>
To implement this, fill in the placeholders:
RRD_URL
- The URL of the recording to display in the viewer.RERUN_VERSION
- The version of the Rerun SDK used to generate the recording.
For instance:
<iframe src="https://app.rerun.io/version/0.14.1/?url=https://app.rerun.io/version/0.14.1/examples/arkit_scenes.rrd"></iframe>
Using the JavaScript Package
We offer JavaScript bindings to the Rerun Viewer via NPM. This method provides control over the viewer but requires a JavaScript web application setup with a bundler.
Various packages are available:
- @rerun-io/web-viewer: Suitable for JS apps without a framework or frameworks without dedicated packages.
- @rerun-io/web-viewer-react: Designed specifically for React apps.
βΉοΈ Note: The stability of the
rrd
format is still evolving, so the package version corresponds to the supported Rerun SDK version. Therefore,@rerun-io/web-viewer@0.10.0
can only connect to a data source (.rrd
file, WebSocket connection, etc.) originating from a Rerun SDK with version0.10.0
!
Basic Example
To begin, install the package (@rerun-io/web-viewer) from NPM:
npm i @rerun-io/web-viewer
βΉ Note: This package is compatible only with recent browser versions. If your target browser lacks support for Wasm imports or top-level await, additional plugins may be required for your bundler setup. For instance, if you're using Vite, you'll need to install vite-plugin-wasm and vite-plugin-top-level-await and integrate them into your
vite.config.js
.
Once installed and configured, import and use it within your application:
import { WebViewer } from "@rerun-io/web-viewer"; const rrdUrl = null; const parentElement = document.body; const viewer = new WebViewer(); await viewer.start(rrdUrl, parentElement);
The viewer creates a <canvas>
on the provided parentElement
and executes within it.
The first argument for start
determines the recordings to open in the viewer. It can be:
null
for an initially empty viewer- a URL string to open a single recording
- an array of strings to open multiple recordings
Each URL can be either a file served over http
or a connection to an SDK using our serve API. See web-viewer-serve-example for a full example of how to log data from our Python SDK to an embedded Rerun Viewer.
Controlling the canvas
By default, the web viewer attempts to expand the canvas to occupy all available space. You can customize its dimensions by placing it within a container:
<body> <div id="viewer-container"></div> </body>
#viewer-container { position: relative; height: 640px; width: 100%; }
const parentElement = document.getElementById("viewer-container"); const viewer = new WebViewer(); await viewer.start(null, parentElement);
Viewer API
The Viewer API supports adding and removing recordings:
const rrdUrl = "https://app.rerun.io/version/0.14.1/examples/arkit_scenes.rrd"; // Open a recording: viewer.open(rrdUrl); // Later on⦠viewer.close(rrdUrl);
Once finished with the Viewer, you can stop it and release all associated resources:
viewer.stop();
This action also removes the canvas from the page.
You can start
and stop
the same WebViewer
instance multiple times.