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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.cronly.app/sdks/javascript.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
