scttnlsn/mubsub
{ "createdAt": "2012-04-04T13:41:42Z", "defaultBranch": "master", "description": "Pub/sub for Node.js and MongoDB", "fullName": "scttnlsn/mubsub", "homepage": "", "language": "JavaScript", "name": "mubsub", "pushedAt": "2018-05-23T18:32:41Z", "stargazersCount": 309, "topics": [], "updatedAt": "2025-08-21T02:41:59Z", "url": "https://github.com/scttnlsn/mubsub"}mubsub
Section titled “mubsub”Mubsub is a pub/sub implementation for Node.js and MongoDB. It utilizes Mongo’s capped collections and tailable cursors to notify subscribers of inserted documents that match a given query.
Example
Section titled “Example”var mubsub = require('mubsub');
var client = mubsub('mongodb://localhost:27017/mubsub_example');var channel = client.channel('test');
client.on('error', console.error);channel.on('error', console.error);
channel.subscribe('bar', function (message) { console.log(message.foo); // => 'bar'});
channel.subscribe('baz', function (message) { console.log(message); // => 'baz'});
channel.publish('bar', { foo: 'bar' });channel.publish('baz', 'baz');Create a client
Section titled “Create a client”You can pass a Db instance or a URI string. For more information about the URI format visit http://mongodb.github.io/node-mongodb-native/driver-articles/mongoclient.html
var mubsub = require('mubsub');
// Using a URIvar client = mubsub('mongodb://localhost:27017/mubsub_example', [options]);
// Passing a MongoDB driver `Db` instance directly.var client = mubsub(new Db(...));Channels
Section titled “Channels”A channel maps one-to-one with a capped collection (Mubsub will create these if they do not already exist in the database). Optionally specify the byte size of the collection and/or the max number of documents in the collection when creating a channel.
WARNING: You should not create lots of channels because Mubsub will poll from the cursor position.
var channel = client.channel('foo', { size: 100000, max: 500 });Options:
sizemax size of the collection in bytes, default is 5mbmaxmax amount of documents in the collectionretryIntervaltime in ms to wait if no docs are found, default is 200msrecreaterecreate the tailable cursor when an error occurs, default is true
WARNING: Don’t remove collections with running publishers. It’s possible for mongod to recreate the collection on the next insert (before Mubsub has the chance to do so). If this happens the collection will be recreated as a normal, uncapped collection.
Subscribe
Section titled “Subscribe”var subscription = channel.subscribe([event], callback);Subscriptions register a callback to be called whenever a document matching the specified event is inserted (published) into the collection (channel). You can omit the event to match all inserted documents. To later unsubscribe a particular callback, call unsubscribe on the returned subscription object:
subscription.unsubscribe();Publish
Section titled “Publish”channel.publish(event, obj, [callback]);Publishing a document simply inserts the document into the channel’s capped collection. A callback is optional.
Listen to events
Section titled “Listen to events”The following events will be emitted:
// The given event was publishedchannel.on('myevent', console.log);
// Any event was publishedchannel.on('message', console.log);
// Document was insertedchannel.on('document', console.log);
// Mubsub is ready to receive new documentschannel.on('ready', console.log);
// Connection errorclient.on('error', console.log);
// Channel errorchannel.on('error', console.log);client.close();Closes the MongoDB connection.
Install
Section titled “Install”npm install mubsubmake testYou can optionally specify the MongoDB URI to be used for tests:
MONGODB_URI=mongodb://localhost:27017/mubsub_tests make testProjects using mubsub
Section titled “Projects using mubsub”- simpleio Simple long polling based communication.