Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

grunt-hashmap

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-hashmap

Generate a hash mapping for your assets, to burst cache

  • 1.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
142
decreased by-45.38%
Maintainers
1
Weekly downloads
 
Created
Source

grunt-hashmap Build Status

Generate a hash mapping for your assets files, in order to burst cache

Getting Started

This plugin requires Grunt ~0.4.0

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-hashmap --save-dev

One the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-hashmap');

The "hashmap" task

Overview

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

grunt.initConfig({
  hashmap: {
    options: {
      // These are default options
      output: '#{= dest}/hash.json',
      etag: null, // See below([#](#option-etag))
      algorithm: 'md5', // the algorithm to create the hash
      rename: '#{= dirname}/#{= basename}_#{= hash}#{= extname}', // save the original file as what
      keep: true, // should we keep the original file or not
      merge: false, // merge hash results into existing `hash.json` file or override it.
      hashlen: 10, // length for hashsum digest
    },
    your_target: {
      // Target-specific file lists and/or options go here.
      options: {
        output: 'static/versions.json',
      },
      files: {
        cwd: 'static/dist',
        src: ['js/**/*.js', 'css/**/*.css'],
        dest: 'static/dist'
      },
    },
  },
})

In your express application, add a static_url generator to template helpers:

var path = require('path');
var hash_cache = require('./static/hash.json');

var reg_css_js = /\.(css|js)$/;

// change these consts according to the app's running environment
var STATIC_ROOT = 'http://img.example.com';
var DEBUG = false;

function static_url(p) {
  if (p[0] == '/') p = p.slice(1);
  if (DEBUG || !reg_css_js.test(p)) return STATIC_ROOT + '/' + p;

  var hash = hash_cache[p];
  if (hash) {
    var ext = path.extname(p);
    p = path.join(path.dirname(p), path.basename(p, ext) + '_' + hash + ext); 
  }
  return STATIC_ROOT + '/' + p;
}


app.locals({
  static: static_url
});

In your template, always refer to static file url like this:

script(src="#{static('/css/abc.css')}")

The output would be:

<script type="text/javascript" src="http://img.example.com/css/abc_83hfa2gi.css"></script>

<!-- or when in debug mode: -->
<script type="text/javascript" src="/css/abc.css"></script>

Options

options.output

Type: String Default value: '#{= dest}/hash.json'

Where to save the hash mapping json file. Available variables are dest, cwd. You can always use #{= grunt.config.get(...) }' to access config data in your Gruntfile.

Set to null will disable the output.

The output format:

{
  "a/b.js": "aaa93n3f2",
  "foo.css": "maaof33mao"
}
options.etag

Type: String Default value: null

In spite of standard digest algorithms provided by the crypto module, you can set a "etag" format to use as file version.

Set etag to true will use the default format: #{= size}-#{= +mtime}.

All values in a fs.Stats result are available.

options.algorithm

Type: String Default value: 'md5'

The algorithm to generate hash digests. Depend on the version of OpenSSL on the platform. Examples are 'sha1', 'md5', 'sha256', etc.

options.hashlen

Type: Number Default value: 10

The length of a hash digest hex value.

options.rename

Type: String Default value: '#{= dirname}/#{= basename}\_#{= hash}#{= extname}'

Rename files, to include a hash in it. This is often for safely bursting cache. Available variables are:

  • hash - The hash/etag value.
  • dest - The destination directory.
  • cwd - The cwd you setted for files prop section.
  • filepath - The path of the file.
  • basename - The basename of the file, with extension name excluded.
  • dirname - The directory name of the file.
  • extname - The extension name of the file.

Examples:

"abc/defg/hijk.js" =>
{
  filepath: "abc/defg/hijk.js",
  basename: "hijk",
  dirname: "abc/defg",
  extname: "js"
}

With the default rename format, the result will be something like "abc/defg/hijk\_e8e7f9e4.js".

Will raise a warning if the renamed target is not in dest directory.

options.keep

Type: String Default value: true

Whether to keep the original files after rename it.

options.merge

Type: String Default value: false

This option is mainly for cases like this:

grunt.initConfig({
  hashmap: {
    options: {
      output: 'static/hash.json',
      merge: true,
    },
    js: {
      cwd: 'static/dist',
      src: 'js/**/*.js',
      dest: 'static/dist'
    },
    css: {
      cwd: 'static/dist',
      src: 'css/**/*.css',
      dest: 'static/dist'
    },
  },
  watch: {
    js: {
      files: ['static/js/**/*.js'],
      tasks: ['hashmap:js']
    }, 
    css: {
      files: ['static/css/**/*.css'],
      tasks: ['hashmap:css']
    }
  },
})

Hashmap tasks for css and js are created seperately. So with the grunt-contrib-watch running, when you modify one single file, grunt won't need to run the whole hash mapping process for all files.

Since all the hash results will be written to the same file, and the hashmaps are automatically merged. It is safe to refer to hash.json for all static files in your application's static url generator.

The downside of this practice is that hashes for deleted files will never be removed, unless hash.json is removed. But of course, you can always set up a grunt clean task.

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

  • 0.1.5 - add option.salt to burst all the cache, thanks @theoephraim
  • 0.1.4 - format output json, and sort it by filenames (diff a hashmap made easy). Thanks @dpolivy !
  • 0.1.1 - add options.encoding for file contents reading
  • 0.1.0 - first release

Keywords

FAQs

Package last updated on 11 Jan 2017

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc