edgecast-purge
Version:
a service to purge media from edgecast's cache
71 lines (43 loc) • 2.55 kB
Markdown
# edgecast-purge

[](https://www.npmjs.com/package/edgecast-purge)
[](https://travis-ci.org/gnitnuj/edgecast-purge)
[](https://david-dm.org/gnitnuj/edgecast-purge)
[](https://coveralls.io/github/gnitnuj/edgecast-purge)
[](https://www.npmjs.com/package/edgecast-purge)
> a service to purge media from edgecast's cache
### Installation
Install via [yarn](https://github.com/yarnpkg/yarn)
yarn add edgecast-purge (--dev)
or npm
npm install edgecast-purge (--save-dev)
### Usage
```js
import edgecastPurge from 'edgecast-purge';
```
### methods
#### init
```js
const Edgecast = require('edgecast-purge');
const edgecastService = new Edgecast('your-edgecast-token', 'your-edgecast-account-id');
```
#### purge multiple urls
```js
edgecastService.purge(['first-url', 'second-url', 'nth-url']);
```
#### purge single url
```js
edgecastService.purge('single-url');
```
### Examples
See [`example`](example/script.js) folder.
### Builds
`edgecast-purge` is compiled as a collection of [CommonJS](http://webpack.github.io/docs/commonjs.html) 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](https://github.com/umdjs/umd) builds in the [`dist/umd` folder](https://unpkg.com/edgecast-purge/dist/umd/). 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](https://unpkg.com/edgecast-purge) 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) license.
### Contributing
We are open to contributions, see [CONTRIBUTING.md](CONTRIBUTING.md) for more info.
### Misc
This module was created using [generator-module-boilerplate](https://github.com/duivvv/generator-module-boilerplate).