@vladfrangu-dev/hlidacstatu-client
v1.0.0
Published
A client for interacting with the https://www.hlidacstatu.cz API
Downloads
9
Maintainers
Readme
Hlidac Statu Client
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!');