edgecast-purge
v0.1.1
Published
a service to purge media from edgecast's cache
Downloads
865
Readme
edgecast-purge
a service to purge media from edgecast's cache
Installation
Install via yarn
yarn add edgecast-purge (--dev)or npm
npm 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
See example folder.
Builds
edgecast-purge is compiled as a collection of CommonJS modules & [ES2015 modules](http://www.2ality.com/2014/0
-9/es6-modules-final.html) 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.
License
The code is available under the MIT license.
Contributing
We are open to contributions, see CONTRIBUTING.md for more info.
Misc
This module was created using generator-module-boilerplate.
