Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 881 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 881 Bytes

localForage-chunk-store travis

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.