greetings,I have to convert a absolutely massive json string to a javascript object using the default JSON NODE in multiple steps.
1.The string is read in from the filesystem using the default read file block with the output set to single utf8 string,encoding to default
and path obviously to the file in question. Parts of the string are allready missing after this block. i'm not sure if this is a debugger limitation limiting string length or if something is happening in actually reading the file
The debug output is limited in length to avoid overloading the browser. You can tell it is truncated because it shows a series of dots on the end. If you wish to check it is all there then set the debug node to output to the console and then it will all appear in the node-red log.
If you are on a pi or other debian OS you should be able to see the log by running node-red-log
then initiating the read.
Alternatively you can stop node red and start it again in a command window, then the debug output should appear in the command window.
i also tried sudo journalctl -f -u node-red -o cat and that works like a charm and i seem to get the entire string as a output it'll need some more debugging but now i have a start at least so thanks for the help
sages