idb-lucass

1.2.2 • Public • Published

idb-lucass

A content addressable file store on top of indexedDB, implemented to the lucass spec.

Coverage Status Build Status dependencies Status

semantic-release Commitizen friendly JavaScript Style Guide

API conforms to the lucass spec and supports optional arguments to the hasher.

const idblucass = require('idb-lucass')
const store = idblucass('noop', argHasher)
store.set(Buffer.from('asdf'), (err, hash) => {
  if (err) throw err
  store.get(hash, (err, buff) => {
    if (err) throw err
    console.log(buff.toString()) // 'asdf'
  })
})

Readme

Keywords

none

Package Sidebar

Install

npm i idb-lucass

Weekly Downloads

7

Version

1.2.2

License

Apache-2.0

Last publish

Collaborators

  • mikeal