Cronly
  • 🆘FAQ
  • Setup guides
    • 💵Subscription
    • 👤Your account
    • 🏢Employees
    • 📁Projects
    • 🔥Triggers
    • 🔔Events
    • 🪝Webhooks
  • Service guides
    • ▶️Managed jobs
    • ⏱️Job monitors
    • 🔐SSL certificates
  • API
    • How to use the API
    • Companies
    • Notifications
    • Job monitors
    • Projects
    • SSL certificates
    • Users
    • Servers
    • Back-ups
  • SDKs
    • PHP
    • JavaScript
  • Integrations
    • Wordpress WP-Cron
Powered by GitBook
On this page
  • More information
  • Installation
  • Usage
  1. SDKs

JavaScript

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

PreviousPHPNextWordpress WP-Cron

Last updated 2 years ago

More information

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

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);
  });
GitHub
npmjs
Coen Schutte