JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1268
  • Score
    100M100P100Q145906F
  • License MIT

Convert an abstract-chunk-store compliant store into a readable or writable stream

Package Exports

  • chunk-store-stream

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 travis npm downloads

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 store = new FSChunkStore(3)

/ ... put some data in the store

var stream = ChunkStoreStream(store, 3).createReadStream({ 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 store = new FSChunkStore(3)

var stream = ChunkStoreStream(store, 3).createWriteStream()
fs.createReadStream('file.txt').pipe(stream)

License

MIT. Copyright (c) Feross Aboukhadijeh.