0

I have a noflo graph.json.

My basic use case is

  1. Generate graph.json using noflo-ui
  2. Convert graph.json into a javascript(or node module) file using any means possible.
  3. run the file in my own node express application.

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.

Mike Poole
  • 1,958
  • 5
  • 29
  • 41
Sharuk Ahmed
  • 825
  • 7
  • 15

1 Answers1

2

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.

bergie
  • 930
  • 7
  • 8