1.0.0 • Published 11 years ago

sfr-cdn v1.0.0

Weekly downloads
7
License
-
Repository
github
Last release
11 years ago

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);