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

@skyblock-ts/toolkit

v0.0.3

Published

Lightweight toolkit built on @skyblock-ts/core with high-level utility functions for the Hypixel Skyblock API.

Readme

@skyblock‑ts/toolkit

High‑level, cached and convenient utility functions for Hypixel SkyBlock
built on top of @skyblock‑ts/core.

npm version
MIT License

Installation

npm install @skyblock-ts/toolkit
# or
pnpm add @skyblock-ts/toolkit
# or
yarn add @skyblock-ts/toolkit

Quick Start

import { ToolkitClient } from "@skyblock-ts/toolkit";

// You can pass your Hypixel API key (optional for cached reads):
const client = new ToolkitClient({ APIKey: "MY_KEY", batchSize: 20, cacheTTL: 300_000 });

async function main() {
  // — Auctions
  const all = await client.auctions.all();
  console.log("Total auctions:", all.length);

  const cheapSwords = await client.auctions.get({ itemName: "HYPERION", maxPrice: 1_000_000_000 });
  console.log("Cheap hyperions:", cheapSwords.length);

  const bestBin = await client.auctions.lowestBin({ itemName: "ENCHANTED_GOLD" });
  console.log("Lowest ENCHANTED_GOLD BIN:", bestBin?.starting_bid);

  // — Profiles
  const uuid = await client.profiles.uuidForName("Notch");
  console.log("Notch’s UUID:", uuid);

  const profs = await client.profiles.listProfilesByName("Notch");
  console.log("SkyBlock profiles:", profs.map(p => p.profile_id));

  const active = await client.profiles.getActiveProfile(uuid!);
  console.log("Active profile member data:", active);

  // — Bazaar
  const bazaar = await client.bazaar.listProducts();
  console.log("Bazaar items:", Object.keys(bazaar).length);

  const gold = await client.bazaar.getProduct("ENCHANTED_GOLD");
  console.log("Enchanted Gold buy price:", gold?.buy_summary[0].pricePerUnit);
}

main().catch(console.error);

Modules & Methods

Auctions

  • all(): Promise<AuctionItem[]>
  • get(filter: AuctionFilter): Promise<AuctionItem[]>
  • lowestBin(filter: AuctionFilter): Promise<AuctionItem \| null>
  • lowestBins(filters: AuctionFilter[]): Promise<Record<string, number>>
  • averagePrice(filter: AuctionFilter): Promise<number>

Profiles

  • uuidForName(name: string): Promise<string \| null>
  • listProfilesByUuid(uuid: string): Promise<ProfileItem[]>
  • listProfilesByName(name: string): Promise<ProfileItem[]>
  • getProfileById(profileId: string): Promise<ProfileItem \| null>
  • getActiveProfile(uuid: string): Promise<ProfileMember \| null>

Bazaar

  • listProducts(): Promise<Record<string, BazaarItem>>
  • getProduct(key: string): Promise<BazaarItem \| null>

Cache: By default results are cached in memory for cacheTTL ms (default: 3 minutes).
Batching: Auction pages are fetched in parallel batches of batchSize (default: 10).

API Reference

Browse the full TypeScript types in dist/index.d.ts
or peek at the source under src/.


Made with ❤️ by @unloopedmido.

MIT License — see LICENSE.