https://github.com/reddec/node-red-contrib-zmq
Extension module for ZMQ endpoints for Node-Red
https://github.com/reddec/node-red-contrib-zmq
node-red zmq
Last synced: 6 months ago
JSON representation
Extension module for ZMQ endpoints for Node-Red
- Host: GitHub
- URL: https://github.com/reddec/node-red-contrib-zmq
- Owner: reddec
- License: mit
- Created: 2016-07-01T04:53:43.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-06-06T07:34:27.000Z (about 9 years ago)
- Last Synced: 2025-03-09T00:06:40.010Z (over 1 year ago)
- Topics: node-red, zmq
- Language: HTML
- Homepage: https://flows.nodered.org/node/node-red-contrib-zmq
- Size: 24.4 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# node-red-contrib-zmq
Extension module for ZMQ endpoints for Node-Red
## Reader
Supports read messages from SUB or PULL sockets in server or client mode.
Supported properties:
* **Is server** - bind or connect. For reader default is connect
* **URI** - comma separated connection strings for connecting or binding
* **Mode** - socket type: SUB or PULL
* **Topic** - for SUB socket - comma separated topics names (prefix for match messages). Topic name will be written into `topic` field.
## Writer
Supports write messages to PUB or PUSH sockets in server or client mode.
Can send `payload` as single message or as multipart if `payload` is Array.
Supported properties:
* **Is server** - bind or connect. For writer default is bind
* **URI** - comma separated connection strings for connecting or binding
* **Mode** - socket type: PUB or PUSH
* **Topic** - for PUB socket - topic name for messages. Can be override by `topic` field in message.