updown.io

updown.io npm version

An updown.io API client. For a documentation on the API see https://updown.io/api/.

Installation

Run yarn add updown.io or npm install updown.io.

Usage

A complete documentation is available at https://ffflorian.github.io/api-clients/packages/updown.io/.

Example

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 => {
// ...
});

Build and test

yarn
yarn test

Generated using TypeDoc