npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@railrepay/kafka-client

v1.0.0

Published

Reusable Kafka consumer for RailRepay microservices

Downloads

9

Readme

@railrepay/kafka-client

Reusable Kafka consumer for RailRepay microservices with SASL/SSL authentication.

Features

  • SASL/SSL authentication support
  • Configurable consumer groups
  • Message handler callback pattern
  • Graceful shutdown support
  • Statistics tracking
  • Optional logger injection

Installation

npm install @railrepay/kafka-client

Usage

Basic Usage

import { KafkaConsumer } from '@railrepay/kafka-client';

const consumer = new KafkaConsumer({
  serviceName: 'my-service',           // REQUIRED
  brokers: ['kafka:9092'],             // REQUIRED
  username: 'user',                    // REQUIRED
  password: 'pass',                    // REQUIRED
  groupId: 'my-consumer-group',        // REQUIRED
});

await consumer.connect();

await consumer.subscribe('my-topic', async (message) => {
  const value = message.message.value?.toString();
  console.log('Received:', value);
  // Process message...
});

// Graceful shutdown
await consumer.disconnect();

With Full Configuration

import { KafkaConsumer } from '@railrepay/kafka-client';
import { createLogger } from '@railrepay/winston-logger';

const logger = createLogger({ serviceName: 'darwin-ingestor' });

const consumer = new KafkaConsumer({
  serviceName: 'darwin-ingestor',      // REQUIRED
  brokers: ['kafka.example.com:9092'], // REQUIRED
  username: process.env.KAFKA_USER!,   // REQUIRED
  password: process.env.KAFKA_PASS!,   // REQUIRED
  groupId: 'darwin-consumers',         // REQUIRED
  ssl: true,                           // default: true
  saslMechanism: 'scram-sha-512',      // default: 'plain'
  clientId: 'darwin-ingestor-1',       // default: serviceName
  sessionTimeout: 30000,               // default: 30000ms
  heartbeatInterval: 3000,             // default: 3000ms
  logger: logger,                      // optional
});

Message Handler

import { KafkaMessage, MessageHandler } from '@railrepay/kafka-client';

const handler: MessageHandler = async (message: KafkaMessage) => {
  const { topic, partition, message: msg } = message;

  console.log({
    topic,
    partition,
    offset: msg.offset,
    key: msg.key?.toString(),
    value: msg.value?.toString(),
    headers: msg.headers,
  });

  // Your processing logic here
};

await consumer.subscribe('darwin-feed', handler);

Reading from Beginning

// Start consuming from the beginning of the topic
await consumer.subscribe('my-topic', handler, true);

Statistics

const stats = consumer.getStats();
console.log(stats);
// {
//   processedCount: 1234,
//   errorCount: 5,
//   lastProcessedAt: Date,
//   isRunning: true,
// }

// Check if running
if (consumer.isConsumerRunning()) {
  console.log('Consumer is active');
}

Configuration

KafkaConfig Interface

| Property | Type | Required | Default | Description | |----------|------|----------|---------|-------------| | serviceName | string | Yes | - | Service name for logging | | brokers | string[] | Yes | - | Kafka broker URLs | | username | string | Yes | - | SASL username | | password | string | Yes | - | SASL password | | groupId | string | Yes | - | Consumer group ID | | ssl | boolean | No | true | Enable SSL | | saslMechanism | string | No | 'plain' | SASL mechanism | | clientId | string | No | serviceName | Kafka client ID | | sessionTimeout | number | No | 30000 | Session timeout (ms) | | heartbeatInterval | number | No | 3000 | Heartbeat interval (ms) | | logger | Logger | No | console | Logger instance |

SASL Mechanisms

Supported mechanisms:

  • plain (default)
  • scram-sha-256
  • scram-sha-512

Error Handling

The consumer handles errors gracefully:

const handler: MessageHandler = async (message) => {
  // If this throws, the error is logged and the consumer continues
  // processing other messages
  throw new Error('Processing failed');
};

// Consumer continues running, error is logged
await consumer.subscribe('my-topic', handler);

Check getStats().errorCount to monitor error rates.

Graceful Shutdown

process.on('SIGTERM', async () => {
  console.log('Shutting down...');
  await consumer.disconnect();
  process.exit(0);
});

License

Private - RailRepay