UNPKG

cache-breaker

Version:
65 lines (39 loc) 1.36 kB
#Cache Breaking Tasks [![Build Status](https://travis-ci.org/shakyShane/cache-breaker.svg?branch=master)](https://travis-ci.org/shakyShane/cache-breaker) **Note: This modules does nothing with the file system, that means you'll have to read/write files yourself, or wait for the Grunt & Gulp Plugins** ##Install ``` npm install cache-breaker ``` ##Use in project ``` var cacheBreaker = require("cache-breaker"); ``` ###Usage Examples **Append a timestamp as query string** ```js var string = '<link href="/style.css" /><link href="/style2.css" />'; cacheBreaker.breakCache(string, ['style.css', 'style2.css']); // output // <link href="/style.css?rel=23452341" /><link href="/style2.css?rel=23452341" /> ``` **Append a timestamp in the filename** ```js var string = '<link href="/style.css" />'; cacheBreaker.breakCache(string, 'style.css', {position: 'filename'}); // output // <link href="/style.56432352.css" /> ``` **Overwrite an exiting timestamp** Use this when you have rewrite rules in place. ```js var string = '<link href="/style.2452345.css" />'; cacheBreaker.breakCache(string, 'style.*.css', {position: 'overwrite'}); // output // <link href="/style.56432352.css" /> ``` ##TODO - [ ] Grunt Plugin - [ ] Gulp Plugin - [x] Accept file src for creating MD5 hash - [x] Allow user-specified string in place of timestamp