🚀 Launch Week Day 4:Introducing the Alert Details Page: A Better Way to Explore Alerts.Learn More →
Socket
Book a DemoInstallSign in
Socket

hypergraph

Package Overview
Dependencies
Maintainers
3
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hypergraph

Yet another Merkle DAG

latest
Source
npmnpm
Version
1.1.0
Version published
Maintainers
3
Created
Source

hypergraph

Yet another Merkle DAG

npm install hypergraph

build status

API

var graph = hypergraph(levelup)

creates a new graph from a levelup

Range Options

Various methods use these options for specifying ranges in the graph:

since - array of nodes to begin the range until - array of nodes to end the range

graph.count(opts, cb)

Get the total number of nodes between a range. Calls cb with the node count for the range you specify

opts should be Range Options.

graph.match(hashes, cb)

Given an array of hashes, calls cb with the hashes that exist in the local graph

graph.heads(cb)

Calls cb with an array of the current heads of the graph

graph.createReadStream(opts)

Returns a readable stream that will emit graph nodes. opts should be Range Options

graph.createWriteStream()

Returns a writable stream that stores data in the graph

graph.get(key, cb)

Gets the value for a key in the graph, calls cb with the value

graph.append(value, cb)

Appends value to the current head, calls cb when done. Uses .add internally.

Inserts value into the graph as a child of links, calls cb when done.

graph.close(cb)

Calls close on the underlying graph.db

License

MIT

FAQs

Package last updated on 07 Nov 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts