seacloud-api-client
v1.0.2
Published
A fully typed client library for the Seacloud API
Downloads
2
Readme
Seacloud API Client
An unoffical, fully typed TS/JS client library for the Seacloud API.
Installation
npm install seacloud-client
Usage
import { SeacloudClient } from 'seacloud-api-client';
// Create a new client
const client = new SeacloudClient();
// Authenticate with the Seacloud API using your username and password
client.authenticate('username', 'password');
// Get all locations
const locations = await client.getLocations();
Documentation
See the Seacloud API documentation for more information on the API endpoints and response types. Only a subset of the API is currently supported:
- Authenticate
- Locations
- Sensors
Contributions are welcome!