dist | ||
test | ||
ts | ||
.gitignore | ||
.travis.yml | ||
LICENSE | ||
package.json | ||
README.md |
cflare
allows you to manage multiple cloudflare accounts.
Note: this package is still in alpha, so some things do not yet work. I (Phil from Lossless) expect this package to be ready 1. of June 2016.
Status
Usage
var cflare = require("cflare");
var cflareInstance = new cflare();
cflareInstance.auth({
email:"",
key:""
});
cflareInstance.createRecord(); // returns promise with resolve function getting the response;
cflareInstance.removeRecord(); // returns promise with resolve function getting the response;
cflareInstance.copyRecord(); // returns promise with resolve function getting the response;
cflareInstance.listRecords(); // returns promise with resolve function getting the response;
cflareInstance.listDomains(); // returns promise with resolve function getting the response;