dev-null-stream

0.0.1 • Public • Published

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')
})

Readme

Keywords

none

Package Sidebar

Install

npm i dev-null-stream

Weekly Downloads

400

Version

0.0.1

License

ISC

Last publish

Collaborators

  • nisaacson