gulp-each
A for-each for Gulp that exposes the actual content of the file.
I have had to write this code many times because I wanted a "one-off" task that does "somthing quick" to each file. Or, I have wanted to write literally any module that processes code files, and had to start anew every time and figure out this logic.
Most other for-each implementations for Gulp expose the stream (of buffer) object, requiring the user to read the stream (or buffer) and write out a new stream (or buffer). Yes, I used the most annoying way to word that on purpose. This module exposes the content of the file itself, so you can directly start manipulating the content (e.g. code) directly, without worrying about the Gulp plumbing.
Download
npm install gulp-each
Usage
var each = require('gulp-each');
gulp.task('mytask', function() {
return gulp.src('*.js')
.pipe(each(function(content, file, callback) {
var newContent = '// my comment\n' + content;
callback(null, newContent);
}))
.pipe(gulp.dest('output'));
});
By default, gulp-each
will assume that you are working with text files and use utf8
as the encoding, returning a string as the content
variable. At times, that will not be true. If you want to work with binary files, you can provide 'buffer'
as the second parameter:
gulp.task('mytask', function() {
return gulp.src('*.png')
.pipe(each(function(content, file, callback) {
var newConent = transformTheImageBuffer(content);
callback(null, newContent);
}, 'buffer'))
.pipe(gulp.dest('output'));
});