gulp-keycdn

0.0.3 • Public • Published

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

/gulp-keycdn/

    Package Sidebar

    Install

    npm i gulp-keycdn

    Weekly Downloads

    13

    Version

    0.0.3

    License

    MIT

    Last publish

    Collaborators

    • keycdn