├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── examples ├── basic │ ├── graph.svg │ └── index.ts ├── binary_tree │ ├── graph.svg │ └── index.ts ├── diff │ ├── graph0.svg │ ├── graph1.svg │ └── index.ts ├── dot │ ├── graph.svg │ └── index.ts ├── json │ ├── graph.json │ └── index.ts ├── online │ └── index.ts └── styles │ ├── graph.svg │ └── index.ts ├── package.json └── third_party ├── dagre └── LICENSE ├── licenses.html └── noto_sans └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizdom-dev/vizdom/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizdom-dev/vizdom/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizdom-dev/vizdom/HEAD/README.md -------------------------------------------------------------------------------- /examples/basic/graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizdom-dev/vizdom/HEAD/examples/basic/graph.svg -------------------------------------------------------------------------------- /examples/basic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizdom-dev/vizdom/HEAD/examples/basic/index.ts -------------------------------------------------------------------------------- /examples/binary_tree/graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizdom-dev/vizdom/HEAD/examples/binary_tree/graph.svg -------------------------------------------------------------------------------- /examples/binary_tree/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizdom-dev/vizdom/HEAD/examples/binary_tree/index.ts -------------------------------------------------------------------------------- /examples/diff/graph0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizdom-dev/vizdom/HEAD/examples/diff/graph0.svg -------------------------------------------------------------------------------- /examples/diff/graph1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizdom-dev/vizdom/HEAD/examples/diff/graph1.svg -------------------------------------------------------------------------------- /examples/diff/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizdom-dev/vizdom/HEAD/examples/diff/index.ts -------------------------------------------------------------------------------- /examples/dot/graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizdom-dev/vizdom/HEAD/examples/dot/graph.svg -------------------------------------------------------------------------------- /examples/dot/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizdom-dev/vizdom/HEAD/examples/dot/index.ts -------------------------------------------------------------------------------- /examples/json/graph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizdom-dev/vizdom/HEAD/examples/json/graph.json -------------------------------------------------------------------------------- /examples/json/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizdom-dev/vizdom/HEAD/examples/json/index.ts -------------------------------------------------------------------------------- /examples/online/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizdom-dev/vizdom/HEAD/examples/online/index.ts -------------------------------------------------------------------------------- /examples/styles/graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizdom-dev/vizdom/HEAD/examples/styles/graph.svg -------------------------------------------------------------------------------- /examples/styles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizdom-dev/vizdom/HEAD/examples/styles/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizdom-dev/vizdom/HEAD/package.json -------------------------------------------------------------------------------- /third_party/dagre/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizdom-dev/vizdom/HEAD/third_party/dagre/LICENSE -------------------------------------------------------------------------------- /third_party/licenses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizdom-dev/vizdom/HEAD/third_party/licenses.html -------------------------------------------------------------------------------- /third_party/noto_sans/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizdom-dev/vizdom/HEAD/third_party/noto_sans/LICENSE --------------------------------------------------------------------------------