0.0.2 • Published 11 years ago

cache-bust v0.0.2

Weekly downloads
9
License
-
Repository
github
Last release
11 years ago

cache-bust

Create cache-busted versions of a file using the MD5 hash of the file's contents.

Installation

$ npm install cache-bust

Example

var bust = require('cache-bust');
var file = path.resolve(__dirname, 'build.js');

bust(file); // creates a "build-43c191bf6d6c3f263a8cd0efd4a058ab.js"

API

cacheBust(file, options)

Create a cache-busted version of file in the same directory, removing previously cache-busted copies if they exist.

Options:

{
  remove: false
}

cacheBust.remove(file)

Remove any existing cache-busted versions of a file.

cacheBust.alias(file)

Return the cache-busted alias for a given file.

License

MIT

0.0.2

11 years ago

0.0.1

11 years ago