Handling Errors in Node-Red Flows

An error in a node-red flow will generally cause an error message to be written to the debug sidebar. However in many cases it is important that you handle errors rather than just simply logging them. Node red provides the catch node for catching errors caused by nodes in the tab. Click to rate this post! [Total: 0 Average: 0]

Continue reading

An Introduction to Dashboard 2

Up until now node-red dashboards have all been based on the dashboards nodes in the node-red-dashboard module. This was a third party module and was based on a version of angular (V1) which is no longer maintained. The project is now deemed to be on Life support -see here Click to rate this post! [Total: 6 Average: 3.2]

Continue reading

Node-Red -Blocking and non Blocking- Synchronous and Asynchronous

With most programs functions are blocking in that they will complete their task before returning. Generally this type of programming is easy to manage as you have only one task active at any time. This style of programming is known as synchronous, but  the problem with it is that it can make applications very slow as they have to continually wait. Click to rate this post! [Total: 0 Average: 0]

Continue reading

Converting JSON Data to CSV

Incoming MQTT data is often JSON formatted data and in order to extract data values from it. Storing the data directly as JSON formatted data is also common However it is also very common to store this data as CSV or a least convert it to CSV for use in legacy systems. Click to rate this post! [Total: 2 Average: 5]

Continue reading

Using Nodejs Modules in Node-Red

Because node-red is a nodejs applications it is possible to use nodejs modules in node-red. Depending on the version of node-red that you are using there are two ways of doing this: Editing the settings File -All versions Setup tab in the function node -1.3 and above Click to rate this post! [Total: 2 Average: 5]

Continue reading

Using Node-Red with Influxdb

Influxdb is specially designed for time series data and as such it is a popular choice for storing sensor type data. Influxdb underwent a major change in version 2.0 and so you need to careful what version you are using. Click to rate this post! [Total: 1 Average: 5]

Continue reading

Using Subflows and Groups in Node-Red

A node-red subflow is a collection of nodes that appear as a single node in the workspace. They also appear in the node palette and can be added to a flow like any other node. They are effectively reusable groups of nodes much like sub routines in traditionally programs. Any changes to the subflow are effective immediately in all flows using that subflow Click to rate this post! [Total: 0 Average: 0]

Continue reading

Node-Red and JSONata for Beginners

JSONata is a lightweight query and transformation language for JSON data and allows queries to be carried out directly on JSON data. —ref The alternative,and the one I most often use is to convert JSON to JavaScipt and then query it using JavasScript functions. Click to rate this post! [Total: 0 Average: 0]

Continue reading

Using The Table DashBoard UI Widget Node

The table  dashboard ui widget node is used to add tabular data to a dashboard. The node is based on the tabulator module which you can read about here and see examples here. Click to rate this post! [Total: 0 Average: 0]

Continue reading