telerithm playground

A realistic demo app with telerithm SDK integrated. Trigger scenarios and see logs flow in real-time.

0
logs sent to Telerithm

SDK Integration Example

import { TelerithmClient } from "@telerithm/sdk-js";

const t = new TelerithmClient({ 
  dsn: "https://key@demo.telerithm.cloud/source" 
});

// Log an error
t.error("Payment failed", { 
  userId: "u_123", 
  amount: 99.00 
});