BGL JSX

A work-in-progress package which allows for the creation of Breadboard Graphs using JSX-like syntax in TSX files.

e.g.

<board>
  <nodes>
    <node id="input-1" type="input" />
    <node id="output-1" type="output" />
  </nodes>
  <edges>
    <edge from="input-1" out="say" to="output-1" in="hear" />
  </edges>
</board>

XML-like syntax will allow web developers to write type-safe Breadboard Graphs familiarly.

The experimental branches can be found at: