Socket
Socket
Sign inDemoInstall

ipfs-log

Package Overview
Dependencies
Maintainers
1
Versions
113
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ipfs-log

Append-only log for IPFS


Version published
Weekly downloads
718
increased by82.23%
Maintainers
1
Weekly downloads
 
Created
Source

ipfs-log

An append-only log on IPFS.

ipfs-log uses a linked list of IPFS hashes (Merkle Tree) where each entry in the log points to the previous entry. The items are ordered on join based on the parent nodes and time of reception.

Use cases:

  • Track a version of a file
  • Create a feed of IPFS hashes
  • Messaging
  • CRDTs

Originally created for, and currently used in, orbit-db - a KV-store and Event Log on IPFS

Install

npm install ipfs-log

Usage

See ./examples for more.

const Log = require('ipfs-log');

Log.create(ipfs, 'A')
  .then((log) => {
    log.add('one').then((node) => {
      console.log('Node:', node.hash, node.payload);
    });
  })
  .catch((err) => console.error(err));

Tests

npm install
npm test

API

Class methods

All class methods take an ipfs-api instance as the first parameter. See https://github.com/ipfs/js-ipfs-api for documentation.

const ipfs = require('ipfs-api')();
create(ipfs, id, [items])

Create a log. Returns a Promise that resolves to a Log instance.

const ipfs = require('ipfs-api')();
const Log = require('ipfs-log');
Log.create(ipfs, 'id').then((log) => console.log(log));
getIpfsHash(ipfs, log)

Get the IPFS hash of this log. Returns a Promise that resolves to an IPFS hash.

Log.getIpfsHash(ipfs, log).then((hash) => console.log(hash));
fromIpfsHash(ipfs, hash)

Create a log from an IPFS hash. Returns a Promise that resolves to a Log instance.

Log.fromIpfsHash(ipfs, hash).then((log) => console.log(log));
fromSnapshot(ipfs, snapshot)

Create a log from a log snapshot. Returns a Promise that resolves a Log instance.

Log.create(ipfs, 'id').then((log) => {
  // Add items to the log    
});

const snapshot = log.snapshot;

Log.fromSnapshot(ipfs, snapshot).then((log) => console.log(log));

Instance methods

add(data)

Add a log entry. Returns the added node.

log.add({ some: 'data' });
log.add('text');
// log1.items ==> [{ some: 'data' },  'text']
join(other)

Joins the log with other log. Fetches history up to 256 items, ie. items that are not in this log but referred to in items in other.

// log1.items ==> ['A', 'B']
// log2.items ==> ['C', 'D']

log1.join(log2);
// log1.items ==> ['A', 'B', 'C', 'D']
clear()

Empties the log.

items

Returns all items in the log.

const items = log.items;
// items ==> ['A', 'B', 'C']
snapshot

Returns items in the current batch. Current batch are the items in the log that have been added after the latest sync with another log.

const snapshot = log.snapshot;
// snapshot ==> { id: 'log id', items: ['A', 'B', 'C']}

TODO

  • Node.js Stream API
  • Support for encrypting the hashes
  • Support for payload encryption

FAQs

Package last updated on 17 Mar 2016

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc