graph
Version:
library for manipulating directed and undirected graphs
108 lines (68 loc) • 2.9 kB
Markdown
[](http://travis-ci.org/tantalor/graphjs)
**GraphJS** is a simple Javascript library for manipulating directed and undirected [graphs](http://en.wikipedia.org/wiki/Graph_\(mathematics\)).
Your graphs may have self edges, weighted edges, and directed edges, but not multiedges.
var g = new Graph();
g.set('a', 'b', 3);
g.get('a', 'b');
g.set('a', 'b', 4);
g.get('a', 'b');
g.del('a', 'b');
g.get('a', 'b');
new Graph({
a: ['b', 'c'],
c: ['d'],
});
new Graph({
a: {b: 2},
b: {c: 3},
});
new Graph({a: ['-b', '-c']});
var g = new Graph({
a: ['b'],
b: ['c'],
});
g.degree('a');
g.degree('b');
g.degree('c');
g.size();
g.order();
for (v in g.adj('b')) {
}
var g = new Graph();
g.dir('a', 'b');
g.has('a', 'b');
g.has('b', 'a');
g.set('a', '-b');
var g = new Graph();
g.set('a', 'b');
g.deldir('b', 'a');
g.has('a', 'b');
g.has('b', 'a');
var g = new Graph({
a: ['b', 'c'],
c: ['d'],
});
var h = g.copy();
You may mix directed and undirected edges in the same graph.
A pair of directed edges (a, b) and (b, a) is always collapsed into an undirected edge. An undirected edge (a, b) may be expanded into a directed edge (a, b) by deleting the directed edge (b, a) with `deldir(b, a)`.
For consistency, the size of a graph is defined to be the number of undirected edges plus the number of directed edges. In other words, two distinct directed edges between two distinct vertices do not count twice for the size.
A directed self edge is indistinguishable from an undirected self edge.
## Tests
GraphJS is packaged with `nodeunit` tests.
The easiest way to run the tests is with `npm test`.
$ npm test
...
OK: 173 assertions (23ms)
You can also test your browser by loading the `test.html` page.