A browser/Node.js library for manipulating graphs
npm install konigsberg
A browser/Node.js library for manipulating graphs and executing graph theory algorithms.
* Directed and undirected graphs
* Customizable data on nodes and edges
* Simple search algorithms (Depth First Search and Breadth First Search at the moment)
* Unit tested
Install Konigsberg with npm:
```
npm install konigsberg
In Node.js / Webpack / Browserify:
`js`
var konigsberg = require('konigsberg');
var g = new konigsberg.DirectedGraph();
In the browser:
`html``