• Stars
    star
    240
  • Rank 168,229 (Top 4 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created almost 12 years ago
  • Updated almost 9 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

👊 Asset revving for Grunt.js

grunt-rev

Build Status Project Status: Unsupported - The project has reached a stable, usable state but the author(s) have ceased all work on it. A new maintainer may be desired.

Static file asset revisioning through content hashing

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 and package.json, install this plugin with the following command:

npm install grunt-rev --save-dev

Once that's done, add this line to your project's Gruntfile:

grunt.loadNpmTasks('grunt-rev');

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.

The "rev" task

Use the rev task together with yeoman/grunt-usemin for cache busting of static files in your app. This allows them to be cached forever by the browser.

Overview

In your project's Gruntfile, add a section named rev to the data object passed into grunt.initConfig().

grunt.initConfig({
  rev: {
    options: {
      encoding: 'utf8',
      algorithm: 'md5',
      length: 8
    },
    assets: {
      files: [{
        src: [
          'img/**/*.{jpg,jpeg,gif,png}',
          'fonts/**/*.{eot,svg,ttf,woff}'
        ]
      }]
    }
  },
})

Options

options.encoding

Type: String Default value: 'utf8'

The encoding of the file contents.

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', etc. On recent releases, openssl list-message-digest-algorithms will display the available digest algorithms.

options.length

Type: Number Default value: 8

The number of characters of the file content hash to prefix the file name with.

Usage Examples

Basic Asset Revving

This will rename app.js and app.css with an 8 character long hash prefix. For example js/9becff3a.app.js and css/ae35dd05.app.css. The hash value depends on the file contents.

grunt.initConfig({
  rev: {
    files: {
      src: ['scripts/app.js', 'css/app.css']
    }
  }
})

Custom Options

Change the algorithm or length to style the generated asset file names. Note that the usemin companion task requires at least one anycase hexadecimal character to prefix the file name.

grunt.initConfig({
  rev: {
    options: {
      algorithm: 'sha1',
      length: 4
    },
    files: {
      src: ['**/*.{js,css,png,jpg}']
    }
  }
})

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using grunt.

Release History

(Nothing yet)

More Repositories

1

express-history-api-fallback

♻️ Simple fallback for Express-served single page apps that use the HTML5 History API for client side routing.
JavaScript
56
star
2

pfnp

👽 Programming For Non-Programmers
CSS
19
star
3

listenrange

👂 Simple tool to listen on lots of ports.
JavaScript
4
star
4

web-components-now

🔱 Web Components Now!
4
star
5

gopher-over-https

Gopher over HTTPS
Makefile
4
star
6

bythuongtran

Drupal theme for ByThuongTran.com website
JavaScript
3
star
7

lgtm

Code review with 👍 and 👎
JavaScript
3
star
8

ga-uxdi-sg-talk

🌷 References from a talk to designers
3
star
9

demo-testing

Demo for a talk on automated testing
JavaScript
3
star
10

duchess

🐙 Code and designs for my 2012 KTM 690 Duke
JavaScript
2
star
11

json-api

🔡 Exercise for Express
JavaScript
2
star
12

grunt-codacy

Publish code coverage metrics to Codacy
JavaScript
2
star
13

test

2
star
14

backbone_todo

JavaScript
2
star
15

decorator-anechoic

🔂 Ignore repeated calls with the same arguments to a function.
JavaScript
2
star
16

appcast.module

Module for Drupal to poll an appcast XML feed, mirror the latest software update enclosure and display its details in download buttons.
PHP
2
star
17

pfnp-live

🐤 Notes and code from the Programming For Non Programmers (PFNP) class at General Assembly (GA) Singapore
HTML
1
star
18

talk-spdx

👮 License audits to break the build, not the law.
1
star
19

Appcaster

Generate or append an Atom feed with software update announcements.
1
star
20

pfnp-playground

:squirrel: Gopher it!
JavaScript
1
star
21

Echo-Setup

Debugging tool for Pandion auto-update service. Reports the command line parameters and launches Pandion.
1
star
22

kymterra

Drupal theme for Kymterra.com website (based on ByThuongTran theme)
JavaScript
1
star
23

packager_mockups

Balsamiq designs for Pandion Packager
Objective-C
1
star
24

preflight

Automated web app testing
JavaScript
1
star
25

cbas.github.com

📢 My blog about web development
CSS
1
star
26

2013.jsconf.asia

Website for JSConf.asia 2013 in Manila
HTML
1
star
27

gitter-spy

🔗 Gitter bot to harvest links from chat rooms
JavaScript
1
star
28

webdev-breakdown

🐣 What are some basic web dev tools and languages
1
star
29

spa-history-api

🎏 Single Page App demo code for client side routing
JavaScript
1
star
30

test-travis-shortcircuit

Playground for Travis CI https://docs.travis-ci.com/user/job-lifecycle#customizing-the-build-phase
1
star