For the complete documentation index, see llms.txt. This page is also available as Markdown.

JavaScript

Use the JavaScript wrapper to access the Cronly API from your existing project.

More information

This package was developed by a community member and can be found on GitHub and npmjs. Thanks a lot for maintaining it, Coen Schutte!

Installation

In your existing project, just require the wrapper:

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

Last updated