graphviz-to-grafn

1.0.0 • Public • Published

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

Readme

Keywords

Package Sidebar

Install

npm i graphviz-to-grafn

Weekly Downloads

1

Version

1.0.0

License

Apache-2.0

Unpacked Size

16.2 kB

Total Files

8

Last publish

Collaborators

  • benbeltran
  • rbdr