peer-crdt-ipfs

0.4.0 • Public • Published

peer-crdt-ipfs

IPFS network and storage adapter for peer-crdt.

Install

$ npm install ipfs peer-crdt peer-crdt-ipfs

Setup

const IPFS = require('ipfs')
const PeerCRDT = require('peer-crdt')
const PeerCrdtIpfs = require('peer-crdt-ipfs')
 
// Create an IPFS node
ipfs = new IPFS({
  EXPERIMENTAL: {
    pubsub: true
  }
})
 
const encrypt = async (value) => {
  return await somehowEncrypt(value)
}
 
const decrypt = async (buffer) => {
  return await somehowDecrypt(buffer)
}
 
const options = {
  encrypt,
  decrypt
}
 
// Create a peer-crdt-ifps config object:
const peerCrdtIpfs = PeerCrdtIpfs(ipfs)
 
// Use it to configure peer-crdt
const CRDT = PeerCRDT
  .defaults(peerCrdtIpfs)
  .defaults(options)
 
// Create and use a CRDT at will
const crdt = CRDT.create(type, id)
// ...

peer-crdt API docs are here

Options

The constructor exposed in peer-crdt-ipfs accepts, as the second argument, an object with the following options (defaults in parenthesis):

  • encrypt: an async function that accepts a value and resolves to a buffer.
  • decrypt: inverse function of the above: an async function that accepts a buffer and resolves to a value.
  • minBroadcastInterval (1000)
  • maxBroadcastInterval (5000)
  • totalNetworkBroadcastInterval (1000)
  • dag - object with:
    • format ('dag-cbor')
    • hashAlg ('sha2-256')
  • maxAncestorsBroadcast (10)
  • debounceSetHeadMS (500)

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i peer-crdt-ipfs

Weekly Downloads

5

Version

0.4.0

License

MIT

Last publish

Collaborators

  • pgte