sfr-cdn
v1.0.0
Published
SFR CDN API wrapper for NodeJS
Downloads
15
Readme
node-sfr-cdn
API of the SFR CDN
##Usage with the binary
sfr-cdn -l login -k key ping
sfr-cdn -l login -k key purgeByRegex zone regex
sfr-cdn -l login -k key purgeByUrl url
sfr-cdn -l login -k key prefetchByUrl url
##Usage with node
var CDN = require('sfr-cdn');
var cdn = new CDN(login, key);
cdn.ping(callback);
cdn.purgeByRegex(zone, regex, callback);
cdn.purgeByUrl(url, callback);
cdn.prefetchByUrl(url, callback);