UNPKG

grunt-cachebust-plus

Version:

Bust static assets from the cache using content hashing, inspired by hollandben's grunt-cache-bust plugin

194 lines (148 loc) 6.19 kB
# grunt-cachebust-plus > Bust static assets from the cache using content hashing * [Getting Started](#getting-started) * [Introduction](#the-cachebust-task) * [Overview](#overview) * [Options](#options) * [Usage Examples](#usage-examples) ## Getting Started _If you haven't used [grunt][] before, be sure to check out the [Getting Started][] guide._ From the same directory as your project's [Gruntfile][Getting Started] and [package.json][], install this plugin with the following command: ```bash npm install grunt-cachebust-plus --save-dev ``` Once that's done, add this line to your project's Gruntfile: ```js grunt.loadNpmTasks('grunt-cachebust-plus'); ``` If the plugin has been installed correctly, running `grunt --help` at the command line should list the newly-installed plugin's task or tasks. In addition, the plugin should be listed in package.json as a `devDependency`, which ensures that it will be installed whenever the `npm install` command is run. [grunt]: http://gruntjs.com/ [Getting Started]: https://github.com/gruntjs/grunt/blob/devel/docs/getting_started.md [package.json]: https://npmjs.org/doc/json.html ## The "cacheBustPlus" task Use the **cacheBustPlus** task for cache busting static files in your application. This allows them to be cached forever by the browser, just point the task towards any file that contains references to static assets. _Currently supported static assets: **CSS**, **JavaScript**_ _Note:_ Remote URLs for CSS, JavaScript are ignored by cacheBustPlus. This assumes that remote URLs for these assets will be CDN hosted content, typically for well known libraries like jQuery or Bootstrap. For example, all of below URLs will be ignored: ```html <link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet"> <link href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css" rel="stylesheet"> <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.0.6/angular.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <script type="text/javascript" src="http://code.jquery.com/qunit/qunit-1.12.0.js"></script> <img src="https://secure.gravatar.com/avatar/d3b2094f1b3386e660bb737e797f5dcc?s=420" alt="test" /> ``` ### Overview In your project's Gruntfile, add a section named `cacheBustPlus` to the data object passed into `grunt.initConfig()`. ```js grunt.initConfig({ cacheBustPlus: { options: { encoding: 'utf8', algorithm: 'md5' }, assets: { files: [{ src: ['index.html'] }] } }, }) ``` ```html <!doctype html> <html> <head> <title>This is a test page</title> <link rel="stylesheet" href="assets/standard.css" /> </head> <body> <img src="assets/standard.jpg" alt="bird"> <script defer src="assets/standard.js" type="text/javascript"></script> </body> </html> ``` ### Options #### options.algorithm Type: `String` Default value: `'md5'` `algorithm` is dependent on the available algorithms supported by the version of OpenSSL on the platform. Examples are `'sha1'`, `'md5'`, `'sha256'`, `'sha512'` #### options.baseDir Type: `String` Default value: `false` When set, `cacheBustPlus` will try to find the asset files using the baseDir as base path. #### options.enableUrlFragmentHint Type: `Boolean` Default value: `false` When true, cacheBustPlus will search single and double-quoted strings in scripting languages such as PHP for asset paths. Asset paths must have the `#grunt-cache-bust` URL fragment appended. See [an example](https://github.com/hollandben/grunt-cache-bust/blob/master/test/fixtures/enableUrlFragmentHint.php) for more details. #### options.encoding Type: `String` Default value: `'utf8'` The encoding of the file contents. #### options.filters Type : `Object` Default value: ```js { 'SELECTOR' : function() { return this.attribs['ATTR']; } } ``` The key in the object is the `selector`, and the value provided is the filter. Filters will be merged with the defaults above. See [an example](https://github.com/yu521088/grunt-cachebust-plus/blob/master/tasks/cachebust.js#L39) for more details. #### options.ignorePatterns Type: `Array` Default value: `[]` This is a regex test against a file reference. If returned true for patterns in the array, then that file will be ignored. ```js ignorePatterns: ['test', 'requirejs'] ``` #### options.jsonOutput Type: `Boolean|String` Default value: `false` When set as `true`, `cachbust` will create a json file with an object inside that contains key value pairs of the original file name, and the renamed md5 hash name for each file. The default output file will be named `cachebuster.json` and is relative to the root of the project, or the `baseDir` option if set. Alternatively, you can set this option as a string i.e. `example-file-name.json`, and this will be used. Output format looks like this: ``` { 'app.js' : 'app_23E6F7AC5623E96F7AC56293E6F7AC56.js', 'vendor.js': 'vendor_KJJKNB1FHjh421fwaj124bfaf52jwWAA.js' } ``` #### options.rename Type: `Boolean` Default value: `true` When true, `cacheBustPlus` will rename the reference to the file and the file itself with the generated hash. When set to false, then a query string parameter is added to the end of the file reference. ### Usage Examples #### Basic Asset Cache Busting ```js grunt.initConfig({ cacheBustPlus: { files: { src: ['index.html', 'contact.html'] } } }); ``` #### Custom Options ```js grunt.initConfig({ cacheBustPlus: { options: { algorithm: 'sha1', baseDir: '.tmp/public/', filters: { 'script' : [ function() { return this.attribs['data-main']; }, // for requirejs mains.js function() { return this.attribs['src']; } // keep default 'src' mapper ] } }, files: [{ expand: true, cwd: 'src', src: ['*.html'], dest: 'dest/' }] } }); ```