Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-06T07:34:27.000Z (over 7 years ago)
- Last Synced: 2024-11-05T14:59:49.926Z (about 2 months ago)
- Topics: node-red, zmq
- Language: HTML
- Homepage: https://flows.nodered.org/node/node-red-contrib-zmq
- Size: 24.4 KB
- Stars: 2
- Watchers: 3
- 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.