@up2tom/browser-clients
v0.4.8
Published
Browser-based clients for use with the UP2TOM API
Maintainers
Readme
browser-clients
This package contains browser-based clients that can interact with the UP2TOM API
Usage
import { RestClient } from "@up2tom/browser-clients";
const token = "some-api-token"
const client = new RestClient(token);
client.models()
.then(models => console.log(models))
.catch(e) => console.err(e));