wavehub
Sign in

Quickstart

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

Rate limiting is built in: configure token buckets, sliding windows, or adaptive limits that respond to backpressure.

stream.pipe(retry( maxAttempts: 3, backoff: 'exponential' ), timeout(30000)).subscribe(console.log);

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

Quickstart

Rate limiting is built in: configure token buckets, sliding windows, or adaptive limits that respond to backpressure.

const client = new wavehub.Client( auth: 'Bearer token', retry: true, timeout: 30000 );

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

See also