Hello all,
I am relatively new to node-red and still learning the idiosyncrasies, so please be gentle. I am working on a project where I am developing my own nodes, to carry out custom functionality (integrating it with an existing tool/black-box). I want to be able to access data from a previous node, during configuration, before the whole flow is deployed. The first node should take in csv data and run a background process after the source is selected (which works fine). The next step/node in the sequence requires the configuration to change based on the first node's payload. I was first researching global variables but I couldn't access them within the node code itself, only within the UI. My only other thought is to write/read data to a temporary file between each node. Also, I am trying to avoid combining these two nodes into one, even though it would also be another way to maintain scope between the two "steps."
Is this possible? Any suggestions in general?
Thanks,
Mathew