
Security News
New CVE Forecasting Tool Predicts 47,000 Disclosures in 2025
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
gulp-batch
Advanced tools
Event batcher for gulp-watch'er.
This is problem solver for this issue with gulp.watch and gulp-mocha.
Long story short - example below without batch
'ing will call mocha as many times, as many files was changed (for example git checkout
can touch dozens files).
Also it can be used with gulp-watch
to provide batching callback handler, instead of streaming events from gaze.
Main purpose for this module is running tests in gulp-watch
. So here it is:
var gulp = require('gulp');
var batch = require('gulp-batch');
gulp.watch(['lib/**', 'test/**'], batch(function(events, cb) {
events.on('data', console.log).on('end', cb);
}));
This function creates batcher for provided callback.
It will call it, when bunch of events happens near in time, so you will
be running your test only once per git checkout
command (for example).
Callback signature: function(events, done)
.
events
- is Stream
of incoming events.done
- is callback for your function signal to batch, that you are done. This allows to run your callback as soon as previous end. Error can be passed as argument.Options:
limit
- Maximum events number, that gets into one batch (default: undefined
- unlimited)timeout
- Interval in milliseconds, that counts as "no more events will arrive" (default: 100
)Errors:
All errors in batched function will be passed to errorHandler
.
Returns:
Wrapped callback, that will gather events and call callback.
(MIT License)
Copyright (c) 2013 Vsevolod Strukchinsky (floatdrop@gmail.com)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Event batcher for gulp-watcher
The npm package gulp-batch receives a total of 13,235 weekly downloads. As such, gulp-batch popularity was classified as popular.
We found that gulp-batch demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.