Skip to content

JavaScript implementation of Pando IPLD formats

License

Notifications You must be signed in to change notification settings

osarrouy/js-ipld-pando

 
 

Repository files navigation

IPLD for Pando

JavaScript implementation of the IPLD format spec for Pando objects.

Install

npm

> npm install ipld-pando

Use in Node.js

const IPLDPando = require('ipld-pando')

Use in a browser with webpack or any other bundler

const IPLDPando = require('ipld-pando')

Use in a browser with a <script> tag

TBD

Usage

js-ipld-pando is an implementation of the IPLD format spec meant to be used through the IPLD resolver. However, it can also be used as a standalone module:

const IPLDPando = require('ipld-pando')

IPLDPando.util.serialize(pandoNode, (err, binary) => {
  if (err) {
    throw err
  }
  console.log(binary)
})

Contribute

Feel free to join in or open an issue!

License

MIT © 2018 wespr

About

JavaScript implementation of Pando IPLD formats

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 98.7%
  • Groovy 1.3%