Package Exports
- chunk-store-stream
- chunk-store-stream/write
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (chunk-store-stream) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
chunk-store-stream

Convert an abstract-chunk-store compliant store into a readable or writable stream
Read data out of a chunk store, or write data into a chunk store using streams.
Install
npm install chunk-store-stream
Usage
Create a read stream
var ChunkStoreStream = require('chunk-store-stream')
var FSChunkStore = require('fs-chunk-store') // any chunk store will work
var chunkLength = 3
var store = new FSChunkStore(chunkLength)
// ... put some data in the store
var stream = new ChunkStoreStream.read(store, chunkLength, { length: 6 })
stream.pipe(process.stdout)
Create a write stream
var ChunkStoreStream = require('chunk-store-stream')
var FSChunkStore = require('fs-chunk-store') // any chunk store will work
var fs = require('fs')
var chunkLength = 3
var store = new FSChunkStore(chunkLength)
var stream = new ChunkStoreStream.write(store, chunkLength)
fs.createReadStream('file.txt').pipe(stream)
License
MIT. Copyright (c) Feross Aboukhadijeh.