Reputation: 855
I have a noflo graph.json.
My basic use case is
I want to see the final compiled code in javascript. I have been searching the documentation and source code. I just couldn't locate it.
Upvotes: 0
Views: 127
Reputation: 930
NoFlo doesn't compile graphs to JavaScript, but instead has a runtime that wires the graph's components up on demand.
If you want to expose the graph as a JavaScript function, you can use noflo.asCallback.
Upvotes: 2