Skip to content

JavaScript Implementation of the MerkleDAG Nodes with Protobuf.

License

Notifications You must be signed in to change notification settings

ya7ya/js-ipld-dag-pb

 
 

Repository files navigation

js-ipld-dag-pb

Coverage Status Travis CI Circle CI Dependency Status js-standard-style standard-readme compliant

JavaScript Implementation of the IPLD Format MerkleDAG Node in Protobuf. In addition to the IPLD Format methods, this module also provides an API for creating the nodes and manipulating them (adding and removing links, etc).

Table of Contents

Install

> npm install ipld-dag-pb --save

Usage

const dagPB = require('ipld-dag-pb')

dagPB.DAGNode.create  // create a DAGNode
dagPB.DAGNode.clone   // clone a DAGNode
dagPB.DAGNode.addLink // add a Link to a DAGNode, creating a new one
dagPB.DAGNode.rmLink  // remove a Link to a DAGNode, creating a new one
dagPB.DAGLink.create  // create a DAGLink

// IPLD Format specifics
dagPB.resolver
dagPB.util

Examples

Create a DAGNode

DAGNode.create(new Buffer('some data'), (err, node1) => {
  if (err) {
    throw error
  }
  // node1 is your DAGNode instance.
})

DAGNode.create('some data', (err, node2) => {
  // node2 will have the same data as node1.
})

Add and remove a Link

const link = {
  name: 'I am a link',
  multihash: 'QmHash..',
  size: 42
}

DAGNode.addLink(node, link, (err, nodeA) => {
  if (err) {
    throw err
  }
  // node - DAGNode instance with the link
  console.log('with link', nodeA.toJSON())

  DAGNode.rmLink(nodeA, 'I am a link', (err, nodeB) => {
    if (err) {
      throw err
    }

  // node - DAGNode instance without the link, equal to just node
  console.log('without link', nodeB.toJSON())
  })
})

API

DAGNode functions

DAGNodes are immutable objects, in order to manipulate them you have to follow a function approach of applying function and getting new instances of the given DAGNode.

You can incude it in your project with:

const dagPB = require('ipld-dag-pb')
const DAGNode = dagPB.DAGNode

DAGNode.create(data, links, hashAlg, callback)

  • data - type: Buffer
  • links- type: Array of DAGLink instances or Array of DAGLink instances in its json format (link.toJSON)
  • hashAlg - type: String
  • callback - type: function with signature function (err, node) {}

Create a DAGNode.

DAGNode.create('data', links, (err, dagNode) => {
  // ...
})

links can be a single or an array of DAGLinks instances or objects with the following pattern

{
  name: '<some name>',
  hash: '<some multihash>', // can also be `multihash: <some multihash>`
  size: <sizeInBytes>
}

addLink(node, link, callback)

  • node - type: DAGNode
  • link - type: DAGLink or DAGLink in its json format
  • callback - type: function with signature function (err, node) {}

Creates a link on node A to node B by using node B to get its multihash. Returns a new instance of DAGNode without modifying the old one.

Creates a new DAGNode instance with the union of node.links plus the new link.

link can be:

  • DAGLink instance
  • DAGNode instance
  • Object with the following properties:
{
  name: '<some string>', // optional
  size: <size in bytes>,
  multihash: <multihash> // can be a String multihash or multihash buffer
}

rmLink(node, nameOrMultihash, callback)

  • node - type: DAGNode
  • nameOrMultihash - type: String or multihash buffer
  • callback - type: function with signature function (err, node) {}

Removes a link from the node by name. Returns a new instance of DAGNode without modifying the old one.

DAGNode.rmLink(node, 'Link1' (err, dagNode) => ...) 

clone(node, callback)

  • node - type: DAGNode
  • callback - type: function with signature function (err, node) {}

Creates a clone of the DAGNode instance passed

DAGNode.clone(node, (err, nodeClone) => {})

DAGNode instance methods and properties

You have the following methods and properties available in every DAGNode instance.

node.data

node.links

An array of DAGLinks

node.size

Size of the node, in bytes

node.multihash

node.serialized

node.toJSON()

node.toString()

DAGLink functions

Following the same pattern as DAGNode functions above, DAGLink also offers a function for its creation.

You can incude it in your project with:

const dagPB = require('ipld-dag-pb')
const DAGLink = dagPB.DAGLink

DAGLink.create(name, size, multihash, callback)

DAGLink.create(
  'link-to-file',  // name of the link (can be empty)
  10,              // size in bytes
  'QmSomeHash...', // can be multihash buffer or string
  (err, link) => {
    if (err) {
      throw err
    }
   // link is a DAGLink instance
})

Note: DAGLinks are simpler objects and can be instantiated directly:

const link = new DAGLink(name, size, multihash)

DAGLink instance methods and properties

link.name

link.size

link.multihash

link.toJSON()

link.toString()

IPLD Format Specifics - Local (node/block scope) resolver

See: https://github.com/ipld/interface-ipld-format#local-resolver-methods

dagPB.resolver.resolve

dagPB.resolver.tree

dagPB.resolver.patch

See: https://github.com/ipld/interface-ipld-format#ipld-format-utils

dagPB.util.cid

dagPB.util.serialize

dagPB.util.deserialize

Maintainers

@diasdavid

Contribute

Please contribute! Look at the issues!

Check out our contributing document for more information on how we work, and about contributing in general. Please be aware that all interactions related to IPLD are subject to the IPFS Code of Conduct.

Small note: If editing the README, please conform to the standard-readme specification.

License

ISC © 2016 Protocol Labs Inc.

About

JavaScript Implementation of the MerkleDAG Nodes with Protobuf.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%