0.3.7 • Published 7 years ago

zmq-xpub-xsub v0.3.7

Weekly downloads
15
License
MIT
Repository
github
Last release
7 years ago

zmq-xpub-xsub

Central hub for ZeroMQ that allows multiple publisher and subscribers on same port.

Dependencies

Options

  • xSubPort - 8700 default
  • xPubPort - 8701 default

Starting zmq-xpub-xsub

zmq-xpub-xsub can be started directly from terminal or it can be required and started from hosted application. Host application can be used for purpose of deploying to different environments where host application will define deployment configuration.

  • Starting zmq-xpub-xsub with host application
const ZmqPs= require('zmq-xpub-xsub');

// Log xSubPort and xPubPort to console
ZmqPs.set('debug', true);

// Start zmq-xpub-xsub on provided ports
ZmqPs.run({ xSubPort: 8000, xPubPort: 8001 });
  • Starting zmq-xpub-xsub from terminal (after running npm install zmq-xpub-xsub -g)
>> zqm-xpub-xsub --xSubPort 8000 --xPubPort 8001

// If we want to see ports on which xpub-xsub is listening we can provide --debug flag
>> zmq-xpub-xsub --debug

Example of usage

1) Install and configure ZeroMq. 2) Start zmq-xpub-xsub lib 3) Example below illustrate usage of xpub/xsub application as a messaging hub.

subscriber.connect && publisher.connect will now work in node cluster mode.

// Not required! used for example only
const zmq = require('zmq'); //https://github.com/JustinTulloss/zeromq.node

const config = {
  baseAddress: 'tcp://127.0.0.1',
  xSubPort: 8000,
  xPubPort: 8001
}

// Subscriber
const subscriber = zmq.socket('sub');
subscriber.connect(`${config.baseAddress}:${config.xPubPort}`);

subscriber.on('message', (key, message) => {
  console.log('Message is recived:', key, message);
}));

// Publisher
const publisher = zmq.socket('pub');
publisher.connect(`${config.baseAddress}:${config.xSubPort}`);

publisher.send(['key', 'message'])
0.3.7

7 years ago

0.3.6

7 years ago

0.3.5

7 years ago

0.3.4

7 years ago

0.3.3

7 years ago

0.3.2

7 years ago

0.3.1

7 years ago

0.3.0

7 years ago

0.2.0

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago