An updown.io API client. For a documentation on the API see https://updown.io/api/.
Run yarn add updown.io
or npm install updown.io
.
A complete documentation is available at https://ffflorian.github.io/api-clients/packages/updown.io/.
import {UpdownIO} from 'updown.io';
const updownIO = new UpdownIO('my-api-key'); // API key is only required for checks
UpdownIO.api.checks.getChecks().then(checks => {
//
});
updownIO.api.nodes.getNodes().then(nodes => {
// ...
});
yarn
yarn test