# JavaScript

## More information

This package was developed by a community member and can be found on [GitHub](https://github.com/CoenSchutte/npm-cronly-wrapper) and [npmjs](https://www.npmjs.com/package/@coenschutte/npm-cronly-wrapper). Thanks a lot for maintaining it, [Coen Schutte](https://github.com/CoenSchutte)!

## Installation

In your existing project, just require the wrapper:

```bash
npm i @coenschutte/npm-cronly-wrapper
```

## Usage

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