Paid work for some help on Node development

Hi.

Reaching out to anybody who wants some paid work to help us finish a simple node for node-red.

Background.
We use this npm module very often "node-red-nodegen" https://www.npmjs.com/package/node-red-nodegen
Basically we export the contents of a function node, it packages it ready for importing back into node red as a custom node module. Before we install it to node red, we change a little bit of the HTML, add a custom logo, some text on its usage, simple!

Development Scope

Node Function.
We are already handling the function using a node-red function node. The node receives a MQTT message. The node can receive up to 10 different topics.
in the Function node, we split the messages using the topic, then send its payload to one of the 10 output pins.

Problem.
When we export the function node and create the node module package, the topics are hardcoded, no good for dynamic changes on the fly. We want to

  • Change the HTML so it has Text inputs fields we can type the topic in as a string.
  • Connect the HTML to the javascript code so it can pass the string to each consecutive output pin.

If anyone would like to have a go and get paid please email me at : daniel@smithtek.com.au.

A snippet of the function node code.

const varLabels = [
 "Demo 1",
 "demo2",
 "Each of of these Label will be assinged to a output pin",
 "demo4",
 "these need to be populated by  the HTML",
 "demo6",
 "demo7",
 "demo8",
 "demo9",
 "demo10",
 ];

var payload = msg.payload;
var label = Object.keys(payload)[0];
var output = [];

varLabels.forEach(function (varLabel){
 if (label == varLabel) {
 msg.payload = payload[label].value;
 output.push(msg);
 } else {
 output.push(null);
 }
});

return output;

Fiverr is a good resource for freelance programming help. I know there are several people on that platform that offer node-red services.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.