登录 注册
当前位置:主页 > 资源下载 > 5 > avalanche:一款正则表达式日志库

avalanche:一款正则表达式日志库

  • 更新:2024-12-19 12:34:02
  • 大小:2KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

雪崩 流的最小滑动窗口正则表达式模式匹配器 例子 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