2.1.0 • Published 3 years ago

pipe-box v2.1.0

Weekly downloads
2
License
ISC
Repository
github
Last release
3 years ago

Pipe box

npm version

Encapsulate a series of piped streams into a single stream object,

const PipeBox = require('pipe-box');

const pipedSequence = sourceStream
  .pipe(someTransform)
  .pipe(someOtherTransform);

var pipeBox = new PipeBox( { writeable: sourceStream, readable: pipedSequence } );

pipeBox.write('something');
pipeBox.read() // => The something transformed by the transforms
2.1.0

3 years ago

2.0.6

5 years ago

2.0.5

5 years ago

2.0.4

5 years ago

2.0.3

6 years ago

2.0.2

6 years ago

2.0.1

6 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago