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 store into a readable or writable stream
Read/write data from/to a chunk store, with streams.
Install
npm install chunk-store-stream
Usage
Create a read stream
const { ChunkStoreReadStream } = require('chunk-store-stream')
const FSChunkStore = require('fs-chunk-store') // any chunk store will work
const chunkLength = 3
const store = new FSChunkStore(chunkLength)
// ... put some data in the store
const stream = new ChunkStoreReadStream(store, chunkLength, { length: 6 })
stream.pipe(process.stdout)
Create a write stream
const { ChunkStoreWriteStream } = require('chunk-store-stream')
const FSChunkStore = require('fs-chunk-store') // any chunk store will work
const fs = require('fs')
const chunkLength = 3
const store = new FSChunkStore(chunkLength)
const stream = new ChunkStoreWriteStream(store, chunkLength)
fs.createReadStream('file.txt').pipe(stream)
License
MIT. Copyright (c) Feross Aboukhadijeh.