graphviz-to-grafn
v1.0.0
Published
Convert a graphviz graph to grafn code
Downloads
2
Readme
Graphviz to Grafn
Converts graphviz .dot files to Grafn javascript code. This lets you define your application flow using a diagram editor first, and then fill out the functionality.
How can I use it?
As a Library
const Fs = require('fs/promises');
const GraphvizToGrafn = require('grafn-to-graphviz');
async function convert() {
const graphvizCode = await Fs.read('/path/to/graphviz.dot');
const grafnCode = await GraphvizToGrafn(graphvizCode.toString());
console.log(grafnCode); // will print the JS code
}
As a Binary
$ npm install -g graphviz-to-grafn
$ cat ./path/to/graphviz.dot | g2g > grafn_code.js