@newdash/graphlib
v3.1.4
Published
A directed and undirected multi-graph library
Downloads
4,465
Readme
Graph Library - NewDash Fork
graphlib with security update & type definition
Quick Start
npm i -S @newdash/graphlib
import { Graph } from "@newdash/graphlib"
const g = var g = new Graph({ directed: true, compound: true, multigraph: true });
g.setNode("my-id", "my-label");
g.node("my-id"); // returns "my-label"