Skip to content

Latest commit

 

History

2 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Node-Woof

Persistent messaging library for Node

Introduction

Persistent messaging library which offers various flavors of messaging; optimizing for throughput, latency etc

Currently there is support for paritioned , persistent queues which use Apache Kafka and kafka-node as the client module.

Sample Usage

Producer

var Woof = require('../woof/woof');
var woofObject=new Woof("localhost:2181");
woofObject.publishTopic('test7',{key:'key',value:'value'},{},function(err,data){
  console.log(data);
});

Consumer

var Woof = require('../woof/woof');
var woofObject=new Woof("localhost:2181");
woofObject.registerOffsetConsumer('test7',{fromOffset:true},console.log);

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages