@newdash/graphlib

A directed and undirected multi-graph library

Usage no npm install needed!

<script type="module">
  import newdashGraphlib from 'https://cdn.skypack.dev/@newdash/graphlib';
</script>

README

Graph Library - NewDash Fork

npm (scoped) node-test codecov

Security Rating Bugs Technical Debt

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"

API REFERENCE

CHANGELOG

LICENSE