I may have this wrong but I believe what you are demonstating is working with javascript objects not json objects. If you add a json node before the debug node then you will see the json objects.
JSON stands for "Javascript Object Notation". But you are right - if the input object is not JSON (e.g. such as a stringified object), then you need to use the JSON node to convert the object to JSON.
I may have this wrong but I believe what you are demonstating is working with javascript objects not json objects. If you add a json node before the debug node then you will see the json objects.
JSON stands for "Javascript Object Notation". But you are right - if the input object is not JSON (e.g. such as a stringified object), then you need to use the JSON node to convert the object to JSON.
Is it possible to convert csv file to json file using node red
Yes you can use a Node-RED node like this one: flows.nodered.org/node/node-red-contrib-csvtojson
@@Prescient-PDI thank you. Let me try this one
Is it possible row wise parsing?