1.1.0 • Published 3 years ago
@coenschutte/npm-cronly-wrapper v1.1.0
A Cronly API wrapper
This is a basic API wrapper for Cronly
Installation
You can install the package via npm:
npm i @coenschutte/npm-cronly-wrapperUsage
const Cronly = require("@coenschutte/npm-cronly-wrapper");
var cronly = new Cronly(apikey);
cronly
  .getAllCertificates()
  .then(function (response) {
    console.log(response);
  })
  .catch(function (error) {
    console.log(error);
  });