1.0.0 • Published 4 years ago

@vladfrangu-dev/hlidacstatu-client v1.0.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
4 years ago

Hlidac Statu Client

GitHub npm deno Patreon Donate GitHub Sponsors

Simple to use API client for Hlidac Statu.

Installation

Install with npm / yarn / pnpm:

npm install hlidacstatu-client
yarn add hlidacstatu-client
pnpm add hlidacstatu-client

Usage

const { V2 } = require('hlidacstatu-client');

const client = new V2.Client('api_token');

const result = await client.ping('Hello world!');
// TypeScript/ES Module support
import { V2 } from 'hlidacstatu-client';

const client = new V2.Client('api_token');

const result = await client.ping('Hello world!');