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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@raphaabreu/nestjs-auto-kafka-producer

v1.0.8

Published

Utility that simplifies publishing messages to Kafka

Downloads

514

Readme

AutoKafkaProducer

AutoKafkaProducer is a NestJS utility that automatically batches and publishes messages to a Kafka topic. It is designed to be flexible and easy to use, with options for custom serialization and message preparation.

The class uses a batching mechanism to improve performance and reduce the number of network calls to Kafka. It also provides options for message serialization, compression, and logging.

Installation

First, install the package using your package manager:

npm i @raphaabreu/nestjs-auto-kafka-producer

Usage

To use, import the AutoKafkaProducer it into your NestJS module and provide the necessary options. You can register it as many times as you have Kafka topics to publish to.

import { Module } from '@nestjs/common';
import { AutoKafkaProducer } from '@raphaabreu/nestjs-auto-kafka-producer';

@Module({
  providers: [
    AutoKafkaProducer.register({
      eventName: 'event-1',
      topicName: 'topic-event-1',
    }),
    AutoKafkaProducer.register({
      eventName: 'event-2',
      topicName: 'topic-event-2',
    }),
  ],
})
export class AppModule {}

Now, you can emit events with the specified eventName using the EventEmitter2 instance:

eventEmitter.emit('event-1', { foo: 'bar' });

The AutoKafkaProducer will automatically batch and publish messages to the specified Kafka topic.

Options

The AutoKafkaProducerOptions type is used to configure the producer's behavior. The available options are:

  • topicName: The name of the Kafka topic to publish messages to. Required.
  • eventName: The name of the event to listen for. Required.
  • batchSize: The maximum number of messages to include in a batch. Defaults to 1000.
  • maxBatchIntervalMs: The maximum amount of time to wait before publishing a batch, in milliseconds. Defaults to 10000.
  • verboseBeginning: Whether to log the first 10 messages published to Kafka at the "log" level instead of "debug". Defaults to true.
  • keyExtractor: A function that takes an event object and returns the key to use for the message. Defaults to a function that returns null.
  • valueExtractor: A function that takes an event object and returns the value to use for the message. Defaults to a function that returns the event object itself.
  • keySerializer: A function that takes a key object and returns a string representation of it. Defaults to JSON.stringify.
  • valueSerializer: A function that takes a value object and returns a string representation of it. Defaults to JSON.stringify.
  • prepareMessage: A function that takes an event object and returns a Kafka message object. This option overrides keyExtractor, valueExtractor, keySerializer, and valueSerializer.
  • sample: A number between 0 and 1 that determines the probability of publishing a given event. Defaults to 1, meaning all events will be published. Can also be a function that takes an event object and returns a boolean indicating whether to publish the event.
  • acks: The number of acknowledgements the producer requires the broker to receive before considering a message as sent. Defaults to 0.
  • timeout: The maximum amount of time the producer will wait for an acknowledgement from the broker, in milliseconds.
  • compression: The type of compression to use for the message.

Tests

To run the provided unit tests just execute npm run tests.

License

MIT License

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

Support

If you have any issues or questions, please open an issue on the project repository.