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

@particle-academy/fancy-catalog

v0.1.1

Published

Headless Stripe catalog (products, prices, plans, checkout) with a pluggable feature source. The framework-agnostic Node/TypeScript mirror of the PHP particle-academy/laravel-catalog.

Readme

@particle-academy/fancy-catalog

Fancy UI suite

Headless Stripe catalog — products, prices, plans, and checkout — with a pluggable feature source. The framework-agnostic Node/TypeScript mirror of the PHP particle-academy/laravel-catalog. Same models, same Stripe sync semantics, zero framework assumption: persistence is behind store adapters (in-memory by default) and the stripe SDK is injected.

import Stripe from "stripe";
import { createCatalog } from "@particle-academy/fancy-catalog";

const stripe = new Stripe(process.env.STRIPE_SECRET_KEY!);
const catalog = createCatalog({ stripe }); // in-memory stores by default

const product = await catalog.createProduct({ name: "Pro Plan" });
const price = await catalog.createPrice({
  productId: product.id,
  currency: "USD",
  unitAmount: 2900, // cents
  type: "recurring",
  recurringInterval: "month",
  pricingModel: "flat_recurring",
});

// Push the product + its prices to Stripe (immutable-price re-creation on change).
await catalog.syncProductAndPrices(product);

// Hosted Checkout (the Cashier "owner" becomes a Stripe customer id you supply).
const session = await catalog.subscriptionCheckout(price, {
  customer: "cus_123",
  successUrl: "https://app.example/success",
  cancelUrl: "https://app.example/pricing",
});
// → session.url

API

. (default subpath)

  • createCatalog({ stripe, store?, logger?, onProductSynced? })Catalog
    • stores: catalog.products / catalog.prices / catalog.productFeatures
    • authoring: createProduct / createPrice / createProductFeature / attachFeature
    • Stripe sync: syncProduct / syncPrice / syncProductAndPrices / testConnection
    • checkout: subscriptionCheckout / oneTimeCheckout / getSubscriptionCheckoutUrl / getOneTimeCheckoutUrl
  • StripeCatalogSync — products create/update; prices create/update/retrieve with immutable-price re-creation + change detection (compares unit_amount, currency, recurring interval/count/usage_type, billing_scheme, tiers_mode, tiers, transform_quantity, custom_unit_amount), archiving the old price (active: false) and carrying the shared price_id ULID in metadata.
  • StripeCheckoutcheckout.sessions.create for subscription (subscription_data.metadata + trial_period_days) and one-time (payment_intent_data.metadata + invoice_creation).
  • StoresProductStore / PriceStore / ProductFeatureStore interfaces + soft-delete-aware in-memory defaults (InMemoryProductStore, …).
  • TypesProduct, Price, ProductFeature, ProductFeatureConfig (match the PHP migration columns/casts).

./features subpath

  • createCatalogFeatureSource(catalog, { resolveSubscription })FeatureSource — maps a subject → subscription → product → product-feature pivot rows into FeatureGrant[]. Mirrors the FeatureType / FeatureGrant / FeatureSource contract from @particle-academy/fancy-features (canonical) verbatim — no runtime dependency on it.
import { createCatalogFeatureSource } from "@particle-academy/fancy-catalog/features";
import { createFeatures } from "@particle-academy/fancy-features";

const features = createFeatures({
  sources: [createCatalogFeatureSource(catalog, { resolveSubscription })],
  usage: myUsageStore,
});
await features.canAccess("use-mcp", user);
await features.remaining("ai-tokens", user);

Stripe is injected

stripe is an optional-but-expected peer dependency — pass your own configured Stripe instance. @particle-academy/fancy-features is an optional peer (structural typing only; never imported at runtime), so this package is fully standalone.


⭐ Star Fancy UI

If this package is useful to you, a quick ⭐ on the repo really helps us build a better kit. Thank you!