0.0.1 • Published 7 years ago

localforage-chunk-store v0.0.1

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

localForage-chunk-store CircleCI

localForage persistent browser chunk store that is abstract-chunk-store compliant

Install

npm install localforage-chunk-store

Usage

var LocalForageChunkStore = require('localforage-chunk-store')
var chunks = new LocalForageChunkStore(chunkLength, [opts])

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
  })
})

License

MIT. Copyright (c) Yoann Ciabaud.