gulp-keycdn
v0.0.3
Published
Gulp plugin for interacting with the KeyCDN API
Downloads
24
Readme
gulp-keycdn
Gulp plugin to interact with the KeyCDN API.
Usage
var gulp = require('gulp'),
keycdn = require('gulp-keycdn');
Purge Zone Cache
gulp.task('purgeZone', function() {
var options = {
apiKey : 'your_api_key',
zoneId : 'zone_id',
method : 'get'
};
keycdn(options, {});
});
Purge Selected URLs
gulp.task('purgeURL', function() {
var options = {
apiKey : 'your_api_key',
zoneId : 'zone_id',
method : 'del'
};
var files = {
urls: [ 'demo-1.kxcdn.com/lorem.css', 'demo-1.kxcdn.com/lorem.jpg' ]
};
keycdn(options, files);
});
For more details visit https://www.keycdn.com