03

Projects · active

StoreHub

Unofficial TypeScript client for the StoreHub POS API — inventory, orders, and store management.

Created
Stack
TypeScriptnpmBunStoreHub API
Source
pyyupsk/storehub

A TypeScript client for the StoreHub POS system. Query inventory, manage orders, and integrate StoreHub data into your own tools.

Features

  • Full API coverage — products, categories, orders, customers, reports
  • Typed responses — full IntelliSense for all API objects
  • Dual ESM/CJS — works in both module systems
  • Zero runtime deps — lightweight, only fetch under the hood

Usage

import { StoreHub } from "@pyyupsk/storehub";

const client = new StoreHub({ apiKey: "..." });

const products = await client.products.list({ limit: 50 });
const orders = await client.orders.list({ status: "completed" });

Why

StoreHub doesn't publish an official SDK. This fills the gap for developers building custom integrations, dashboards, or automation on top of their POS system.