2019-07-18 09:51:56 +00:00
|
|
|
# @mojoio/cloudflare
|
2017-01-29 17:22:17 +00:00
|
|
|
easy cloudflare management
|
|
|
|
|
2019-07-18 09:51:56 +00:00
|
|
|
## Availabililty and Links
|
|
|
|
* [npmjs.org (npm package)](https://www.npmjs.com/package/@mojoio/cloudflare)
|
|
|
|
* [gitlab.com (source)](https://gitlab.com/mojoio/cloudflare)
|
|
|
|
* [github.com (source mirror)](https://github.com/mojoio/cloudflare)
|
|
|
|
* [docs (typedoc)](https://mojoio.gitlab.io/cloudflare/)
|
2017-01-29 17:22:17 +00:00
|
|
|
|
|
|
|
## Status for master
|
2019-07-18 09:51:56 +00:00
|
|
|
[![build status](https://gitlab.com/mojoio/cloudflare/badges/master/build.svg)](https://gitlab.com/mojoio/cloudflare/commits/master)
|
|
|
|
[![coverage report](https://gitlab.com/mojoio/cloudflare/badges/master/coverage.svg)](https://gitlab.com/mojoio/cloudflare/commits/master)
|
|
|
|
[![npm downloads per month](https://img.shields.io/npm/dm/@mojoio/cloudflare.svg)](https://www.npmjs.com/package/@mojoio/cloudflare)
|
|
|
|
[![Known Vulnerabilities](https://snyk.io/test/npm/@mojoio/cloudflare/badge.svg)](https://snyk.io/test/npm/@mojoio/cloudflare)
|
|
|
|
[![TypeScript](https://img.shields.io/badge/TypeScript->=%203.x-blue.svg)](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
|
|
|
[![node](https://img.shields.io/badge/node->=%2010.x.x-blue.svg)](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
|
|
|
[![JavaScript Style Guide](https://img.shields.io/badge/code%20style-prettier-ff69b4.svg)](https://prettier.io/)
|
2016-04-27 00:20:27 +00:00
|
|
|
|
|
|
|
## Usage
|
2018-08-13 23:53:52 +00:00
|
|
|
|
2017-01-29 17:22:17 +00:00
|
|
|
Use TypeScript for best in class instellisense.
|
2016-04-27 00:20:27 +00:00
|
|
|
|
|
|
|
```javascript
|
2017-01-29 17:22:17 +00:00
|
|
|
import * as cflare from 'cflare'
|
|
|
|
|
|
|
|
let myCflareAccount = new cflare.CflareAccount()
|
|
|
|
testCflareAccount.auth({
|
|
|
|
email: 'someuser@example.com',
|
|
|
|
key: 'someLongApiKey'
|
|
|
|
})
|
|
|
|
|
|
|
|
let myAsyncCflareManagement = async () => {
|
|
|
|
// get things
|
|
|
|
let myZones = await myCflareAccount.listZones() // zones are fully typed
|
|
|
|
let myIdForADomain = await myCflareAccount.getZoneId('example.com') // type number
|
|
|
|
let myRecordsForADomain = await myCflareAccount.listRecords('example.com') // records are fully typed
|
|
|
|
|
|
|
|
// set things
|
|
|
|
myCflareAccount.updateRecord(...)
|
|
|
|
myCflareAccount.createRecord(...)
|
|
|
|
myCflareAccount.deleteRecord(...)
|
|
|
|
}
|
|
|
|
```
|
2016-04-27 00:27:52 +00:00
|
|
|
|
2019-07-18 09:51:56 +00:00
|
|
|
For further information read the linked docs at the top of this readme.
|
2017-02-12 20:18:32 +00:00
|
|
|
|
|
|
|
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
2019-07-18 09:51:56 +00:00
|
|
|
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy.html)
|
2017-02-12 20:18:32 +00:00
|
|
|
|
2019-07-18 09:51:56 +00:00
|
|
|
[![repo-footer](https://mojoio.gitlab.io/assets/repo-footer.svg)](https://maintainedby.lossless.com)
|