1.4.0 • Published 15 days ago

@hellhub-collective/sdk v1.4.0

Weekly downloads
-
License
MIT
Repository
github
Last release
15 days ago

What is the HellHub SDK?

The HellHub SDK is a TypeScript library that provides a simple and easy-to-use interface for interacting with the HellHub API. It is designed to make it easy for developers to filter and collect data with full type safety out of the box.

Installation

To install the HellHub SDK, you can use npm, yarn or bun. For simplicity, we will use bun in this example:

bun add @hellhub-collective/sdk

Usage

To use the HellHub SDK, you will need to import the HellHub class from the @hellhub-collective/sdk package.

import HellHub from "@hellhub-collective/sdk";

You can then use the HellHub class to interact with the HellHub API. For example, you can use the planets method to retrieve a single or a list of planets:

// get the planet with id 1
const response = await HellHub.planets(1);

// get a list of all planets
const response = await HellHub.planets();

// get a list of planets with a filter and limit
const response = await HellHub.planets({
  limit: 15,
  filters: { name: { $contains: "Earth" } },
});

Requesting complex endpoints

The HellHub SDK also supports more complex endpoints that require additional parameters. You can also use the request method if you need more control over the request:

import HellHub, { type Planet } from "@hellhub-collective/sdk";

const response = await HellHub.request<Planet[]>("/sectors/1/planets", {
  query: {
    limit: 15,
    filters: { name: { $contains: "Earth" } },
  },
});

Bring your own API

If you are using a self-hosted version of the HellHub API, you can specify the HELLHUB_API_URL environment variable to point to your API endpoint. Note that the value will need to include the /api path.

export HELLHUB_API_URL="https://my-hellhub-api.com/api"

License

This project is licensed under the MIT License. See the LICENSE file for details.

1.4.0

15 days ago

1.3.1

18 days ago

1.3.0

22 days ago

1.2.0

24 days ago

1.2.1

24 days ago

1.1.0

1 month ago

1.0.5

1 month ago

1.0.2

1 month ago

1.0.1

1 month ago

1.0.4

1 month ago

1.0.3

1 month ago

1.0.0

1 month ago