0.0.1 • Published 10 years ago

dev-null-stream v0.0.1

Weekly downloads
911
License
-
Repository
-
Last release
10 years ago

Dev Null Stream

Pipe the output of a stream to /dev/null

NPM

Build Status Dependency Status Code Climate

Installation

npm install -S dev-null-stream

Usage

Create an instance of Stringify and pipe a readable stream of objects into that instance

var fs = require('fs')
var DevNullStream = require('dev-null-stream')
var opts = {
  highWaterMark: 2
}
// devNullStream is an instance of require('stream').Transform
var devNullStream = new DevNullStream(opts) // opts is optional

var readStream = fs.createReadStream('/path/to/a/file.txt') // a readable stream of some sort
readStream.pipe(devNull)
devNull.on('finish', function() {
  console.log('finish event called, all objects stringified')
})