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');
ZmqPs.set('debug', true);
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
>> zmq-xpub-xsub --debug
Example of usage
- Install and configure ZeroMq.
- Start zmq-xpub-xsub lib
- Example below illustrate usage of xpub/xsub application as a messaging hub.
subscriber.connect && publisher.connect will now work in node cluster mode.
const zmq = require('zmq');
const config = {
baseAddress: 'tcp://127.0.0.1',
xSubPort: 8000,
xPubPort: 8001
}
const subscriber = zmq.socket('sub');
subscriber.connect(`${config.baseAddress}:${config.xPubPort}`);
subscriber.on('message', (key, message) => {
console.log('Message is recived:', key, message);
}));
const publisher = zmq.socket('pub');
publisher.connect(`${config.baseAddress}:${config.xSubPort}`);
publisher.send(['key', 'message'])