null-duplex-stream

0.0.3 • Public • Published

Null Duplex Stream

a duplex stream eat anything, milk nothing.

var fs = require('fs');
var NullDuplexStream = require('null-duplex-stream');
 
var nullStream = new NullDuplexStream();
 
// eat all your stdin input
process.stdin.pipe(nullStream);
 
// output nothing
nullStream.pipe(process.stdout);

Installation

npm install null-duplex-stream

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i null-duplex-stream

Weekly Downloads

9

Version

0.0.3

License

MIT

Last publish

Collaborators

  • picospuch