Go to file
2020-02-10 14:38:45 +00:00
.vscode fix(core): update 2020-02-09 17:36:29 +00:00
test fix(core): update 2020-02-10 11:26:13 +00:00
ts fix(core): update 2020-02-10 14:38:44 +00:00
.gitignore fix(core): update 2019-07-18 11:51:56 +02:00
.gitlab-ci.yml fix(core): update 2020-02-09 17:36:29 +00:00
LICENSE add lossless badge 2016-04-27 02:27:52 +02:00
npmextra.json fix(core): update 2020-02-09 17:36:29 +00:00
package-lock.json 4.0.2 2020-02-10 14:38:45 +00:00
package.json 4.0.2 2020-02-10 14:38:45 +00:00
qenv.yml fix(core): update 2019-07-18 11:51:56 +02:00
readme.md fix(core): update 2020-02-10 11:26:13 +00:00
tslint.json fix(core): update 2020-02-09 17:36:29 +00:00

@mojoio/cloudflare

easy cloudflare management

Status for master

pipeline status coverage report npm downloads per month Known Vulnerabilities TypeScript node JavaScript Style Guide

Usage

Use TypeScript for best in class instellisense.

import * as cflare from '@mojoio/cloudflare';

const myCflareAccount = new cflare.CflareAccount();
testCflareAccount.auth({
  email: 'someuser@example.com',
  key: 'someLongApiKey'
});

const myAsyncCflareManagement = async () => {
  // get things
  const myZones = await myCflareAccount.listZones(); // zones are fully typed
  const myIdForADomain = await myCflareAccount.getZoneId('example.com'); // type number
  const myRecordsForADomain = await myCflareAccount.listRecords('example.com'); // records are fully typed
};

Contribution

We are always happy for code contributions. If you are not the code contributing type that is ok. Still, maintaining Open Source repositories takes considerable time and thought. If you like the quality of what we do and our modules are useful to you we would appreciate a little monthly contribution: You can contribute one time or contribute monthly. :)

For further information read the linked docs at the top of this readme.

MIT licensed | © Lossless GmbH | By using this npm module you agree to our privacy policy

repo-footer