UNPKG

hiot-kafka

Version:

hiot-app middleware to bootstrap kafka

11 lines (8 loc) 269 B
"use strict"; const debug = require("debug")("hiot-kafka"); module.exports = (client, topics) => { debug(`trying to create topics: ${topics.join(",")}`); return client .metadataRequest(topics) .then(() => debug(`created topics: ${topics.join(",")}`)); };