through2-concat

1.0.1 • Public • Published

through2-concat

simple concat stream with through2

Installation

npm install through2-concat --save

Usage

var fs = require('fs');
var ts = require('through2-concat');
 
fs.createReadStream('package.json').pipe(ts(function(file, cb) {
  this.push(file.length+'');
  cb();
})).pipe(process.stdout);

Readme

Keywords

Package Sidebar

Install

npm i through2-concat

Weekly Downloads

4

Version

1.0.1

License

MIT

Last publish

Collaborators

  • adjusted