forgedb

Client

Metrics are published to standard formats (Prometheus, CloudWatch, DataDog) with zero configuration.

The core forgedb object is a lightweight wrapper that manages the lifecycle of your event stream.

stream.on('*.created', async (event) =>  await db.insert('events', event); ,  concurrency: 50 );

The TypeScript types are fully inferred; no manual type assertions needed even with complex nested schemas.

Client

The core forgedb object is a lightweight wrapper that manages the lifecycle of your event stream.

const batch = stream.pipe(filter((e) => e.type === 'payment'), batch(100), debounce(5000));

Metrics are published to standard formats (Prometheus, CloudWatch, DataDog) with zero configuration.

See also