0.1.4 • Published 7 years ago

@nickpeihl/idb-chunk-store v0.1.4

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

idb-chunk-store Build Statusjs-standard-style

IndexedDB chunk store that is abstract-chunk-store compliant

Install

npm install idb-chunk-store

Usage

var idbChunkStore = require('idb-chunk-store')
var chunks = idbChunkStore(10)

chunks.put(0, new Buffer('01234567890'), function (err) {
  if (err) throw err
  chunks.get(0, function (err, chunk) {
    if (err) throw err
    console.log(chunk) // '01234567890' as a buffer
  })
})

API

var store = idbChunkStore(chunkLength, opts={})

Create a new chunk store with chunks of size chunkLength.

  • opts.name - use a name to separate the contents of different stores

License

MIT