DAGs on top of hypercore, allowing verified random-access to graph nodes
'use strict'
var assert = require('assert')
var hypercore = require('hypercore')
var memdb = require('memdb')
var hypercoreDag = require('.')
var core = hypercore(memdb())
var dag = hypercoreDag(core.createFeed({
sparse: true // Set this to true if you only want to download nodes as you're walking the graph
}))
// We're building the following graph (Time on x axis, depth on y axis)
// 0 2
// \- 1 \
// \--\-- 3
dag.add(null, 'Root', function (err, ref0) {
assert.ifError(err)
dag.add(ref0, 'Child 1', function (err, ref1) {
assert.ifError(err)
dag.add(null, 'Another root', function (err, ref2) {
assert.ifError(err)
dag.add([ref0, ref1, ref2], 'Tie them', function (err, ref3) {
assert.ifError(err)
dag.get(ref3, function (err, node) {
assert.ifError(err)
assert.deepEqual(node.links, [0, 1, 2])
assert.equal(node.depth, 2)
assert.equal(node.value, 'Tie them')
})
})
})
})
})
opts
being {lock: mutexify()}
Preform a Breadth-first search
from startIndex
Preform a Depth-first search
from startIndex
npm install hypercore-dag