JavaScript
Use the JavaScript wrapper to access the Cronly API from your existing project.
More information
Installation
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);
});Last updated