
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
@confluentinc/kafka-javascript
Advanced tools
confluent-kafka-javascript is Confluent's JavaScript client for Apache Kafka and the Confluent Platform. The goal is to provide an highly performant, reliable and easy to use JavaScript client that is based on node-rdkafka yet also API compatible with KafkaJS to provide flexibility to users and streamline migrations from other clients.
Features:
High performance - confluent-kafka-javascript is a lightweight wrapper around librdkafka, a finely tuned C client.
Reliability - There are a lot of details to get right when writing an Apache Kafka client. We get them right in one place (librdkafka) and leverage this work across all of our clients.
Supported - Commercial support is offered by Confluent.
Future proof - Confluent, founded by the creators of Kafka, is building a streaming platform with Apache Kafka at its core. It's high priority for us that client features keep pace with core Apache Kafka and components of the Confluent Platform.
This library leverages the work and concepts from two popular Apache Kafka JavaScript clients: node-rdkafka and KafkaJS. The core is heavily based on the node-rdkafka library, which uses our own librdkafka library for core client functionality. However, we leverage a promisified API and a more idiomatic interface, similar to the one in KafkaJS, making it easy for developers to migrate and adopt this client depending on the patterns and interface they prefer. We're very happy to have been able to leverage the excellent work of the many authors of these libraries!
To use Schema Registry, use the @confluentinc/schemaregistry library that is compatible with this library. For a simple schema registry example, see sr.js.
The following configurations are supported:
Installation on any of these platforms is meant to be seamless, without any C/C++ compilation required.
npm install @confluentinc/kafka-javascript
In case your system configuration is not within the supported ones, check the detailed installation instructions for more information.
Yarn and pnpm support is experimental.
Below is a simple produce example using the promisified API.
const { Kafka } = require('@confluentinc/kafka-javascript').KafkaJS;
async function producerStart() {
const producer = new Kafka().producer({
'bootstrap.servers': '<fill>',
'security.protocol': 'SASL_SSL',
'sasl.mechanisms': 'PLAIN',
'sasl.username': '<fill>',
'sasl.password': '<fill>',
});
await producer.connect();
console.log("Connected successfully");
const res = []
for (let i = 0; i < 50; i++) {
res.push(producer.send({
topic: 'test-topic',
messages: [
{ value: 'v', partition: 0, key: 'x' },
]
}));
}
await Promise.all(res);
await producer.disconnect();
console.log("Disconnected successfully");
}
producerStart();
There are two variants of the API offered by this library. A promisified API and a callback-based API.
kafkajs
, you can use the migration guide to get started quickly.node-rdkafka
, you can use the migration guide.An in-depth reference may be found at INTRODUCTION.md.
Bug reports and feedback is appreciated in the form of Github Issues. For guidelines on contributing please see CONTRIBUTING.md
confluent-kafka-javascript | librdkafka |
---|---|
1.0.0 | 2.6.1 |
This mapping is applicable if you're using a pre-built binary. Otherwise, you can check the librdkafka version with the following command:
node -e 'console.log(require("@confluentinc/kafka-javascript").librdkafkaVersion)'
confluent-kafka-javascript v1.0.0
v1.0.0 is a feature release. It is supported for all usage.
uv_async_init
was being called off the event loop thread,
causing the node process to hang (#190).FAQs
Node.js bindings for librdkafka
The npm package @confluentinc/kafka-javascript receives a total of 59,483 weekly downloads. As such, @confluentinc/kafka-javascript popularity was classified as popular.
We found that @confluentinc/kafka-javascript demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.