@vladfrangu-dev/hlidacstatu-client

A client for interacting with the https://www.hlidacstatu.cz API

Usage no npm install needed!

<script type="module">
  import vladfranguDevHlidacstatuClient from 'https://cdn.skypack.dev/@vladfrangu-dev/hlidacstatu-client';
</script>

README

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!');