Skip to content
This repository has been archived by the owner on Aug 18, 2020. It is now read-only.

Latest commit

 

History

History
43 lines (29 loc) · 808 Bytes

README.md

File metadata and controls

43 lines (29 loc) · 808 Bytes

Transmitter Bridge

Produce POST requests to Apache Kafka topic and trigger the Content-Transmitter.

Usage

Install via yarn

yarn install knamp-transmitter-bridge

Then configure it and use it

import TransmitterBridge from "knamp-transmitter-bridge";

(async () => {

  const server = await TransmitterBridge({
    clientName: "transmitter-client",
    groupId: "transmitter-group",
    produceTo: "transmitter-consume",
    webserver: {
        port: 8844
    }
  });

  server.on("error", (error) => {
    console.error(error);
  });

  server.on("request", data => {
    console.log(data);
  });
})();

Uses

  • Sinek, consuming and producing messages to and from Apache Kafka

License

This project is under MIT.