kafka-ts
Version:
**KafkaTS** is a Apache Kafka client library for Node.js. It provides both a low-level API for communicating directly with the Apache Kafka cluster and high-level APIs for publishing and subscribing to Kafka topics.
35 lines (34 loc) • 1.01 kB
JSON
{
"name": "kafka-ts",
"version": "1.1.9",
"main": "dist/index.js",
"author": "Priit Käärd",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/priitkaard/kafka-ts.git"
},
"scripts": {
"up": "npm run down && KAFKA_VERSION=4.0.0 docker-compose up -d && sleep 5 && bash ./scripts/create-scram-user.sh",
"down": "KAFKA_VERSION=4.0.0 docker-compose down",
"version:prerelease": "npm version prerelease --preid=beta",
"version:patch": "npm version patch",
"version:major": "npm version major",
"format": "prettier --write .",
"build": "tsc",
"watch": "tsc -w",
"test": "vitest --testTimeout 60000 --bail 1"
},
"devDependencies": {
"@types/node": "^22.14.1",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
},
"keywords": [
"kafka",
"client",
"producer",
"consumer"
]
}