1.0.0 • Published 9 years ago

headerstream v1.0.0

Weekly downloads
17
License
MIT
Repository
github
Last release
9 years ago

headerstream

Grab the first n bytes out of a stream.

npm install --save headerstream

call it with a size n and a callback, callback is called with first n bytes, of stream, rest of date is simply passed through. If there is an error emitted by the stream the callback will be called with that instead of the header.

var HeaderStream = require('headerstream');


var destStream = getDestStream();
var srcStream = getSrcStream();
var headerStream = new HeaderStream(16, function (err, header) {
  headerStream.pipe(getStreamBasedOnHeader(header)).pipe(destStream);
});
srcStream.pipe(headerStream);