tinyreplay.
Getting Started

Installation

Run the TinyReplay server from a checkout with Docker or Docker Compose.

The server is a single container. It writes one SQLite file to a mounted volume and serves the dashboard, the ingest API, and the SDK bundle on port 3000.

Docker Compose

docker compose up --build

Visit http://localhost:3000 - a working dashboard, ready to receive sessions.

The volume matters

-v $(pwd)/data:/app/data keeps your database on the host. Drop it and your sessions vanish when the container is removed.

Docker

Build and run the image locally:

docker build -t tinyreplay .
docker run --rm -p 3000:3000 -v "$(pwd)/data:/app/data" tinyreplay

Verify it's up

Dashboard - curl -i http://localhost:3000 returns 200.

SDK bundle - curl -i http://localhost:3000/sdk/tinyreplay.umd.js returns 200.

Health probe - curl -i http://localhost:3000/api/health returns {"ok":true,...}.

What's served where

EndpointURL
Dashboardhttp://localhost:3000
SDK bundlehttp://localhost:3000/sdk/tinyreplay.umd.js
Ingestion APIPOST http://localhost:3000/api/ingest
Health probeGET http://localhost:3000/api/health

Next

The server stores nothing until a page sends it events. Wire up the recorder in First replay, or read the full SDK quickstart.