1.1.0 • Published 3 years ago

@coenschutte/npm-cronly-wrapper v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

A Cronly API wrapper

npm (scoped)

This is a basic API wrapper for Cronly

Installation

You can install the package via npm:

npm i @coenschutte/npm-cronly-wrapper

Usage

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);
  });

Credits