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

ngft-kafka-nestjs

v1.0.1

Published

Wrapper around Kafkajs for NGFT services

Downloads

8

Readme

NGFT Kafka-NestJS

Get started

Before you can use the kafka-nestjs module you need to install it first. Make sure that you can access Google Artifact registry.

Install the module:

npm i @ngft/kafka-nestjs

Example / Lib Tester App

see ./example

Module setup

In you AppModule (or another module where you want to use it) you need to import it.

@Module({
  imports: [
    // ..
    KafkaModule.forRoot(/* configurations */),
    // ..
  ],
  // ...
})
export class AppModule {}

The KafkaModule expects these configurations to run correctly:

  • General Kafka Config
  • Schema Registry Config
  • Consumer Kafka Config
  • Producer Kafka Config

Required Configuration

General Kafka Config

see interface KafkaConfig

| Property | Description | | -------- | ----------------------------------------------------- | | brockers | An array of brockers you want to connect to | | isActive | Enable/Disable the whole kafka service | | ssl | Whether you want to use tls encryption | | [...] | ... all valid kafka.js KafkaConfig attributes |

Schema Registry Config

see interface KafkaRegistryConfig

| Property | Description | | -------- | ----------------------------------------------------- | | host | schema registry uri |

Consumer Kafka Config

see interface KafkaConsumerConfig

| Property | Description | | -------- | ------------------------------------------------ | | isActive | Enable/Disable event consumption | | groupId | service group identifier | | debug | Verbose mode to output every Event Received | | from Beginning| starts consuming from beginning of the topic | | isBlocking | Retries an event in case of an exception | | [...] | ... all valid kafka.js ConsumerConfig attributes |

Producer Kafka Config

see interface KafkaProducerConfig

| Property | Description | | -------- | ----------------------------------------------------- | | isActive | Enable/Disable event publishing | | debug | Verbose mode to output every Event Published | | [...] | ... all valid kafka.js ProducerConfig attributes |

Hint: Alternatively you can provide your existing kafkaConfig as configuration argument for KafkaModule

@Module({
  imports: [
    // ..
    KafkaModule.forRoot(
      kafkaConfig, 
      registryConfig,
      kafkaProducerConfig, 
      kafkaConsumerConfig
    ),
    // ..
  ],
  // ..
})
export class AppModule {}

Usage

Event Consumption

  • Extend the Consumer class with AbstractKafkaHandler
  • Call super() in the class constuctor
  • Apply the Annotation @KafkaEventHandler to a method
    • @KafkaEventHandler registers the method for all specified kafka event types
    • @KafkaEventHandler can get used multiple times
    • First Argument is the desired topic
    • Second Argument is the desired event type
  • Method will be called with the following parameters depending on the event type:
    • ngft (schema-based): NgftMessageHandlerPayload<T extends KafkaPayload>
@Injectable()
export class AircraftConsumer extends AbstractKafkaHandler {
  constructor() {
    super()
  }

  @KafkaEventHandler(kafkaTopic.aircraft, AIRCRAFT_CREATED)
  @KafkaEventHandler(kafkaTopic.aircraft, AIRCRAFT_UPDATED)
  async onAircraftUpsert(
    data: KafkaEvent<AircraftUpsert>,
    metadata: KafkaMetadata,
    rawMessage: RawKafkaMessage,
  ): Promise<void> {
    console.log(data)
  }

  @KafkaEventHandler(/event.*/, /.*/)
  async catchAllNgftEvents(
    data: KafkaEvent<AircraftUpsert>,
    // schema based events will also provide the schemaId in metadata
    metadata: SchemaBasedKafkaMetadata,
    rawMessage: RawKafkaMessage,
  ): Promise<void> {
    console.log(data)
  }
}

Event Publishing

@Injectable()
export class Service {
  constructor(
    private readonly producer: KafkaProducerService,
  ) {
    const dummydata = {
      id: 123,
      name: 'Hi there',
      createdAt: new Date(),
    };
    const event = {
      meta: {
        topicKey: 'event.my-shiny-topic',
        eventType: 'my-event-type',
        createdAt: dummydata.toISOString()
        eventKey: 'my-event-identifier',
      },
      data: dummydata,
    } as KafkaPublishableMessage;

    this.producer.sendMessage(event);
  }
}

Release Cycle

kafka-nestjs is automagically releases using semantic-release. Whenever a commit is merged into main it will be released according to the detected changes.