node-red-contrib-join 0.9.0
Node Red Node to join two or more Nodes.
node-red-contrib-join
Node-Red Node to join 2 or more messages
Messages from all input nodes are joined and put into the new payload. Since the messages might not arrive on the same time, there can be defined one input node as trigger. The input node that triggers must be defined by its topic. If messages arrive very asynchronously it could happen that one node sends multiple inputs in the time interval where the triggering node sends just once. In such a case you can choose if you want to overwrite the multiple input messages (for every node) or just add them.
The new msg would look for example like this for 3 input nodes:
{
"payload":{
"joinedMsgs":[
{
"topic":"abc",
"payload":"abc string",
"_msgid":"e677e6b5.2a7738"
},
{
"topic":"def",
"payload":"def string",
"_msgid":"94a9460.f28acb8"
},
{
"topic":"trigger",
"payload":"trigger string",
"_msgid":"b063ac1.29ddb5"
}
]
},
"topic":"joined topic",
"_msgid":"4e340eed.18b2b"
}