edgecast-purge
a service to purge media from edgecast's cache
Installation
Install via yarnyarn add edgecast-purge (--dev)
or npmnpm install edgecast-purge (--save-dev)
Usage
import edgecastPurge from 'edgecast-purge';
methods
init
const Edgecast = require('edgecast-purge');
const edgecastService = new Edgecast('your-edgecast-token', 'your-edgecast-account-id');
purge multiple urls
edgecastService.purge(['first-url', 'second-url', 'nth-url']);
purge single url
edgecastService.purge('single-url');
Examples
Seeexample
folder.Builds
edgecast-purge
is compiled as a collection of CommonJS modules & ES2015 modules for bundlers that support the jsnext:main
or module
field in package.json (Rollup, Webpack 2)The
edgecast-purge
package includes precompiled production and development UMD builds in the dist/umd
folder. They can be used directly without a bundler and are thus compatible with many popular JavaScript module loaders and environments. You can drop a UMD build as a <script>
tag on your page. The UMD builds make edgecast-purge
available as a window.edgecastPurge
global variable.