npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@holaboss/app-sdk

v0.1.1

Published

Holaboss App SDK — generated TypeScript client, TanStack Query hooks, and Zod schemas for the Holaboss product API

Readme

@holaboss/app-sdk

Generated TypeScript client for the Holaboss product API. Consumed by the Holaboss web app and the open-source holaOS desktop.

This package is a thin, type-safe wrapper over the Holaboss REST API (the Hono server that fronts the Python services). It is generated from the server's OpenAPI surface using Kubb, so the types, functions, and React Query hooks stay in sync with the live contract.

Install

npm install @holaboss/app-sdk
# or
bun add @holaboss/app-sdk

React hooks are optional; if you use them, install the peer:

npm install @tanstack/react-query

Subpath exports

| Subpath | For | Contains | |---|---|---| | @holaboss/app-sdk/core | Non-React consumers, main/preload code in Electron, Node scripts | Generated fetch functions + createAppClient | | @holaboss/app-sdk/react | React UIs | Generated TanStack Query hooks | | @holaboss/app-sdk/zod | Client-side runtime validation | Generated Zod schemas | | @holaboss/app-sdk/clients/app | Advanced: configure the underlying fetch client | Low-level createClient + request/response types | | @holaboss/app-sdk | Convenience re-export of core + react + zod | Everything |

Usage

Create a configured client

import { createAppClient } from "@holaboss/app-sdk/core";

export const appClient = createAppClient({
  baseURL: "https://api.holaboss.ai/api/marketplace",
  credentials: "include",
});

export const appClientOptions = { client: appClient } as const;

Call a generated function (non-React)

import { listMarketplaceTemplates } from "@holaboss/app-sdk/core";

const templates = await listMarketplaceTemplates({
  client: appClient,
});

Use a generated React Query hook

import { useListMarketplaceTemplates } from "@holaboss/app-sdk/react";

function TemplatesList() {
  const { data } = useListMarketplaceTemplates({
    client: appClientOptions,
  });
  return <ul>{data?.map((t) => <li key={t.id}>{t.name}</li>)}</ul>;
}

Stability & versioning

This package follows Semantic Versioning.

  • patch (0.x.y) — internal changes to generated code with no observable API change
  • minor (0.x.0) — additive changes: new endpoints, new optional request/response fields
  • major — breaking changes: removed endpoints, removed fields, required field additions, request/response shape changes

While on 0.x, breaking changes are allowed on minor bumps per standard semver-for-0.x conventions, but we will call them out in release notes and bump conservatively.

Consumers should pin an exact version (no ^ ranges) until this package reaches 1.0.0.

Regenerating

Code is generated from the Holaboss Hono server's OpenAPI spec at /api/marketplace/openapi.json. To regenerate with the server running locally:

bun install
KUBB_APP_OPENAPI_URL=http://127.0.0.1:4000/api/marketplace/openapi.json bun run codegen

The src/generated/ tree is committed. Do not run codegen as part of the release pipeline — regeneration is a deliberate human action, reviewed in a PR, followed by a version bump.

License

MIT