-
avalanche:一款正则表达式日志库
资源介绍
雪崩
流的最小滑动窗口正则表达式模式匹配器
例子
var Avalanche = require('avalanche');
var patterns = [{
regexp: new RegExp(/hello/),
event: 'hello'
}, {
regexp: new RegExp(/world/),
event: 'world'
}];
// options object gets passed to stream transform
var options = {
// the interval at which to slide the window
paddingSize: 4,
// the size of the window
chunkSize: 16
};
var parser = new Avalanche(patterns