This project is part of the @thi.ng/umbrella monorepo.
Type-agnostic directed acyclic graph (DAG), using @thi.ng/associative maps & sets as backend.
- cycle detection
- accessors for direct & transitive dependencies / dependents
- topological sorting
- iterable (in topo order)
STABLE - used in production
- @thi.ng/dgraph-dot - Customizable Graphviz DOT serialization for @thi.ng/dgraph
yarn add @thi.ng/dgraph
Package sizes (gzipped): ESM: 790 bytes / CJS: 850 bytes / UMD: 959 bytes
Several demos in this repo's /examples directory are using this package.
A selection:
Screenshot | Description | Live demo | Source |
---|---|---|---|
CLI util to visualize umbrella pkg stats | Demo | Source |
import { DGraph } from "@thi.ng/dgraph";
g = new DGraph();
// dependencies from a -> b
g.addDependency([1, 2], [10, 20]);
g.addDependency([3, 4], [30, 40]);
g.addDependency([1, 2], [3, 4]);
// add isolated nodes
g.addNode([100, 200]);
g.sort();
// [[30, 40], [3, 4], [10, 20], [100, 200], [1, 2]]
Karsten Schmidt
© 2015 - 2020 Karsten Schmidt // Apache Software License 2.0