localforage-chunk-store
v0.0.1
Published
localForage persistent browser chunk store that is abstract-chunk-store compliant
Downloads
2
Maintainers
Readme
localForage-chunk-store
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.