Static asset revisioning with dependency considerations, appends content hash to each filename (eg. unicorn.css => unicorn.098f6bcd.css), re-writes references.
Purpose
By using the Expires header you can make static assets cacheable for extended periods of time so that visitors to your website do not need to make unnecessary HTTP requests for subsequent page views.
Also content distribution networks like CloudFront let you cache static assets in Edge Locations for extended periods of time.
A problem occurs however when you go to release a new version of your website, previous visitors of your website will hit their cache instead.
In the case of CloudFront, you will need to invalidate items or wait for the cache TTL to expire before vistors of your website will see the vew version.
A solution to this problem is adding a revisioned number to the name your static assets. In the case of this gulp plugin, the revision number is md5( md5(file) + md5(reference1) + md5(reference2) + md5(reference..) ).substr(0, 8)
. eg. unicorn.css => unicorn.098f6bcd.css
Why fork?
This project was forked from gulp-rev to add reference processing and rewriting functionality.
It is the philosophy of gulp-rev
that concerns should be seperated between revisioning the files and re-writing references to those files. gulp-rev-all
does not agree with this, we believe you need analyze each revisioned files' references, to calculate a final hash for caching purposes.
Consider the following example:
A css file makes reference to an image. If the image changes, the hash of the css file remains the same since its contents have not changed. Web clients that have previously cached this css file will not correctly resolve the new image.
If we take in to consideration the dependency graph while calculating the css file hash, we can have it change if any of its child references have changed.
So to recap, gulp-rev-all
not only handles reference re-writing but it also takes child references into consideration when calculating a hashes.
Upgrading to v0.8.x
NOTICE: Major breaking changes occured between the last release v0.7.6 and v0.8.0 that you should be aware of.
- It is now required to instantiate a
var revAll = new RevAll()
instance before piping through revAll.revision() - Reference dependency analysis has been greatly simplified, previous method was way too complex
- No longer requires references to exist physically on disk, can now be piped through, embracing nature of gulp
- New Feature: Ignoring files has changed,
ignore
option has been removed and has been replaced with dontGlobal, dontRenameFile, dontUpdateReference
which allows for more control and less ambiguity on what is being ignored. - New Feature: Manifset and Version files can be created in the same gulp-rev-all run without issue
- Bug Fix: References without quotes were not getting updated
- Change:
silent
& quiet
options, renamed to debug
to control logging output
Install
Install with npm
npm install --save-dev gulp-rev-all
Example
var gulp = require('gulp');
var RevAll = require('gulp-rev-all');
gulp.task('default', function () {
var revAll = new RevAll();
gulp.src('dist/**')
.pipe(revAll.revision())
.pipe(gulp.dest('cdn'));
});
var gulp = require('gulp');
var RevAll = require('gulp-rev-all');
var awspublish = require('gulp-awspublish');
var cloudfront = require("gulp-cloudfront");
var aws = {
"key": "AKIAI3Z7CUAFHG53DMJA",
"secret": "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",
"bucket": "bucket-name",
"region": "us-standard",
"distributionId": "E1SYAKGEMSK3OD"
};
var publisher = awspublish.create(aws);
var headers = {'Cache-Control': 'max-age=315360000, no-transform, public'};
gulp.task('default', function () {
var revAll = new RevAll();
gulp.src('dist/**')
.pipe(revAll.revision())
.pipe(awspublish.gzip())
.pipe(publisher.publish(headers))
.pipe(publisher.cache())
.pipe(awspublish.reporter())
.pipe(cloudfront(aws));
});
Original path
Original file paths are stored at file.revPathOriginal
.
Asset hash
The hash of each rev'd file is stored at file.revHash
. You can use this for customizing the file renaming, or for building different manifest formats.
Asset manifest / Version file
var gulp = require('gulp');
var RevAll = require('gulp-rev-all');
gulp.task('default', function () {
var revAll = new RevAll();
return gulp.src(['assets/css/*.css', 'assets/js/*.js'], { base: 'assets' })
.pipe(gulp.dest('build/assets'))
.pipe(revAll.revision())
.pipe(gulp.dest('build/assets'))
.pipe(revAll.manifestFile())
.pipe(gulp.dest('build/assets'));
.pipe(revAll.versionFile())
.pipe(gulp.dest('build/assets'));
});
An asset manifest, mapping the original paths to the revisioned paths, will be written to build/assets/rev-manifest.json
:
{
"css/unicorn.css": "css/unicorn.098f6bcd.css",
"js/unicorn.js": "js/unicorn.273c2cin.js"
}
Version file
The version file will contain the build date and a combined hash of all the revisioned files, will be written to build/assets/rev-version.json
.
{
"hash": "c969a1154f2a5c0689d8ec4b0eafd584",
"timestamp": "2014-10-11T12:13:48.466Z"
}
Options
options.fileNameVersion
Set the filename of the file created by revAll.versionFile()
Type: String
Default: rev-version.json
options.fileNameManifest
Set the filename of the file created by revAll.manifsetFile()
Type: String
Default: rev-manifset.json
options.dontGlobal
Don't rename, search or update refrences in files matching these rules
Type: Array of (Regex and/or String)
Default: [ /^\/favicon.ico$/ ]
options.dontRenameFile
Don't rename files matching these rules
Type: Array of (Regex and/or String)
Default: []
options.dontUpdateReference
Don't update references matching these rules
Type: Array of (Regex and/or String)
Default: []
options.dontSearchFile
Don't search for references in files matching these rules
Type: Array of (Regex and/or String)
Default: []
In some cases, you may not want to rev your *.html
files:
gulp.task('default', function () {
var revAll = new RevAll({ dontRenameFile: [/^\/favicon.ico$/g, '.html'] });
gulp.src('dist/**')
.pipe(revAll.revision())
.pipe(gulp.dest('cdn'))
});
Every html file except the root /index.html
file:
gulp.task('default', function () {
var revAll = new RevAll({ dontRenameFile: [/^\/favicon.ico$/g, /^\/index.html/g] });
gulp.src('dist/**')
.pipe(revAll.revision()))
.pipe(gulp.dest('cdn'))
});
options.hashLength
Type: hashLength
Default: 8
Change the length of the hash appended to the end of each revisioned file (use options.transformFilename
for more complicated scenarios).
gulp.task('default', function () {
var revAll = new RevAll({ hashLength: 4 });
gulp.src('dist/**')
.pipe(revAll.revision())
.pipe(gulp.dest('cdn'))
});
options.prefix
Type: prefix
Default: none
Prefixes matched files with a string (use options.transformPath
for more complicated scenarios). Useful for adding a full url path to files.
gulp.task('default', function () {
var revAll = new RevAll({ prefix: 'http://1234.cloudfront.net/' });
gulp.src('dist/**')
.pipe(revAll.revision())
.pipe(gulp.dest('cdn'))
});
options.transformPath
Type: function (rev, source, path)
Default: none
Specify a function to transform the reference path. Useful in instances where the local file structure does not reflect what the remote file structure will be.
The function takes three arguments:
rev
- revisioned reference pathsource
- original reference pathpath
- path to the file
gulp.task('default', function () {
var revAll = new RevAll({
transformPath: function (rev, source, path) {
return rev.replace('/img', '/images');
}
});
gulp.src('dist/**')
.pipe(revAll.revision())
.pipe(gulp.dest('cdn'))
});
options.transformFilename
Type: function (file, hash)
Default: none
If the default naming convention does not suite your needs, you can specify a custom filename transform.
The function takes one argument:
file
- file to be revisionedhash
- calculated hash of the file
gulp.task('default', function () {
var revAll = new RevAll({
transformFilename: function (file, hash) {
var ext = path.extname(file.path);
return hash.substr(0, 5) + '.' + path.basename(file.path, ext) + ext;
}
});
gulp.src('dist/**')
.pipe(revAll.revision())
.pipe(gulp.dest('cdn'))
});
options.base
Type: String
or []
Default: none
This option allows you to set addition search paths gulp-rev-all
will use to resolve file references.
options.debug
Type: Boolean
Default: false
If you set this options to true, verbose logging will be emitted to console.
Tips
Make sure to set the files to never expire for this to have an effect.
License
MIT © Joshua Bellamy-Henn