Socket
Socket
Sign inDemoInstall

through2-spy

Package Overview
Dependencies
10
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    through2-spy

A through2 wrapper to for simple stream.PassThrough spies.


Version published
Maintainers
1
Install size
206 kB
Created

Readme

Source

through2-spy

NPM

This is a super thin wrapper around through2 for creating simple stream.PassThrough spies.

Saves you a tiny bit of boilerplate compared to through2 for writing stream spies.

Note you will NOT be able to do anything but spy and abort the stream pipeline. To do any filtering or transformations you should consider through2 through2-filter or through2-map.

Pass a function to run as each chunk goes through your stream pipeline. Return an Error to abort the pipeline.


var spy = require("through2-spy")

var count = 0
var countChunks = spy(function (chunk) {
  count++
})

// vs. with through2:
var countChunks = through2(function (chunk, encoding, callback) {
  count++
  this.push(chunk)
  return callback()
})

// Then use your spy:
source.pipe(countChunks).pipe(sink)

// Additionally accepts `wantStrings` argument to conver buffers into strings
var nsaregex = /(open source)|(foss)|(node\.js)/i
var prizm = spy({wantStrings: true}, function (str) {
  var wiretap = str.match(nsaregex)
  if (wiretap) this.emit("OMGTERRIST", wiretap[0], str)
})

prizm.on("OMGTERRIST", sendDrone(/* ... */))

internet.pipe(prizm).pipe(internet)

// Return an Error to abort the pipeline
var Meter = spy.ctor({maxBytes: 1024, bytes: 0}, function (chunk) {
  this.options.bytes += chunk.length
  if (this.options.bytes >= this.options.maxBytes) return new Error("Over 1024 byte limit!")
})

var meter = new Meter()

API

require("through2-spy")([options], fn)

Create a through2-spy instance that will call fn(chunk) and then silently pass through data downstream.

require("through2-spy").ctor([options], fn)

Create a through2-spy Type that can be instantiated via new Type() or Type() to create reusable spies.

require("through2-spy").obj([options], fn)

Create a through2-spy that defaults to objectMode = true.

require("through2-spy").objCtor([options], fn)

Create a through2-spy Type that defaults to objectMode = true.

Options

  • wantStrings: Automatically call chunk.toString() for the super lazy.
  • all other through2 options

LICENSE

MIT

Keywords

FAQs

Last updated on 17 Jun 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc