New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cache-bust

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


Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created

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

FAQs

Package last updated on 30 Sep 2013

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