graphlib2dot
v1.0.7
Published
Simple command line tool that converts graphlib graphs to dot files via graphlib-dot
Readme
graphlib2dot
This command line tool can convert between a graphlib JSON document and a dot file.
Installation
Install it globally with npm
npm install -g graphlib2dotUsage
Simply pipe your JSON document into the program:
cat graph.json | graphlib2dotOr specify a file:
graphlib2dot -f graph.jsonYou can also convert in the other direction:
cat graph.dot | dot2graphlib
dot2graphlib -f graph.dotYou can create a JSON representation of your graphlib Graph via
graphlib.json.write and deserialize them via graphlib.json.read. More info here.
