streamtap

0.1.0 • Public • Published

streamtap

Tap into a stream. Read-only and drop data instead of applying backpressure

Useful for "monitoring" a stream

Example

var fs = require('fs')
var http = require('http')
var Stream = require('stream')
Stream.prototype.tap = require('streamtap')
 
http.get({
    host: 'google.com',
    port: 80,
    path: '/index.html'
},
function (res) {
    res
    .tap(process.stdout)
    .pipe(fs.createWriteStream('index.html'))
})

Testing

$ npm test

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i streamtap

Weekly Downloads

1

Version

0.1.0

License

none

Last publish

Collaborators

  • dannycoates