match-through
v1.1.3
Published
pipe data through a stream and react to single or multiple matches
Downloads
4
Maintainers
Readme
match-through
Match on patterns in a stream
- Pipe data through a stream and get notified when something matches
- Match once or multiple times
Install
$ npm install match-through --save
Usage
Print out the total file size in the current directory.
var match = require('match-through')
var spawn = require('child_process').spawn
spawn('ls', [ '-lh' ]).stdout.pipe(match(/^total\s+(\S+)/, function (m) {
console.log(m[1])
})).pipe(process.stdout)
Api
match(opts, iter)
Returns a through stream that calls back when a regular expression is matched. Does nothing with the data passing through so it's a pure pass through stream.
opts
(object|regex) Either options object with.regex
and.matchAll
properties or a single regular expression.iter
(function) Called when there is a match. Will call multiple times if there are several matches and.matchAll
property istrue
. Ifopts
is a regular expression the callback will be called at the first match only, if ever.
License
All code, unless stated otherwise, is licensed under the WTFPL
.