npm.io
0.1.0 • Published 8 years ago

graphviz-doc-builder

Licence
ISC
Version
0.1.0
Deps
0
Size
22 kB
Vulns
0
Weekly
0

dot

api to build dot documents for graphviz

Example

const dot = require("graphviz-doc-builder");

const helloNode = dot.node("hello");
const worldNode = dot.node("world");
const edge = dot.edge(helloNode, worldNode);
const graph = dot.graph()
      .setParams({isOriented:true})
      .add(helloNode, worldNode, edge);

console.log(graph.toString());

will output

 digraph "2" {
	0 [label = "hello"];
	1 [label = "world"];
	"0" -> "1" [];
}

The goal of this api is to ease the construction of large dot files.

requirements

Keywords