0.0.3 • Published 8 years ago

gulp-keycdn v0.0.3

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

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