
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
gulp-aggregate
Advanced tools
Gulp plugin that acts like a buffer, but a bit differently:
gulp-aggregate is a Through stream with a twist.
Every time the stream receives a file, it will keep it in an
in-memory buffer along with the files received in the past,
keeping one copy per file path.
It then writes the full batch of files into a new stream
(which is passed to a callback function) and emits the end
event on that stream.
This behaviour allows you to use continuous streams (that never
emit the end event, like gulp-watch)
and make them play well with other gulp plugins that expect the source
stream to end (like gulp-concat
and gulp-inject).
Example:
watch = require('gulp-watch');
aggregate = require('gulp-aggregate');
// concat requires 'end' event in order to concat all the files
concat = require('gulp-concat');
fileStreamWithNoEndEvent = watch({glob: 'watchedScripts/*.js'})
.pipe(aggregate({debounce: 10}, function(fileStreamWithEndEvent) {
return fileStreamWithEndEvent
.pipe(concat('concatenated.js'))
.pipe(gulp.dest('public/scripts'));
}))
The default debounce time is 50ms. After debounce milliseconds without
receiving data, the callback function will get called with the new aggregated stream.
FAQs
Keep track of received files and send them as a batch all together.
We found that gulp-aggregate 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.