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

@nevios/storefront-kit

v1.2.0

Published

Themeable, pre-built React commerce UI + flows for Nevios storefronts.

Readme

@nevios/storefront-kit

Themeable React commerce UI for Nevios storefronts — providers, hooks and whole screens built on @nevios/storefront-js.

You theme it with CSS variables and override individual slots; you don't rebuild it. Every component is styled through --nv-* tokens and renders unstyled-ish markup, so a shop's own design system can take over piece by piece.

pnpm add @nevios/storefront-kit @nevios/storefront-js

Peer dependencies: React 19 and React DOM 19.

Getting started

import { createStorefrontClient } from "@nevios/storefront-js";
import { NeviosProvider, I18nProvider } from "@nevios/storefront-kit";

const client = createStorefrontClient({
  publishableKey: process.env.NEXT_PUBLIC_NEVIOS_STOREFRONT_KEY!,
  market: "cz",
});

export function App({ children }) {
  return (
    <NeviosProvider client={client}>
      <I18nProvider locale="cs-CZ">{children}</I18nProvider>
    </NeviosProvider>
  );
}

I18nProvider also decides how money is formatted. Pass the shopper's locale once and prices come out as 1 299,00 Kč rather than the runtime default.

What's in it

| Area | | |---|---| | Catalog | product + collection views, filters, responsive images | | Cart | line items, summary, the useCart hook | | Checkout | address, shipping picker, payment step, CheckoutFlow | | Order | OrderConfirmation, OrderStatusPage, useOrderStatus | | Payment | PaymentPage, PaymentMethodPicker, TransferInstructions | | Account | sign-in, addresses, order history | | SEO | JSON-LD for products, breadcrumbs, the organization |

Everything is exported from the package root, and everything that fetches goes through the one client on context.

The payment page

PaymentPage is the screen a customer reaches from a "finish your payment" link in an order e-mail — possibly days later, on another device. Give it the payment's token (the order status hands it over as order.payment.token) and it renders one of four situations: there is something to pay, pay by bank transfer (account, variable symbol, QR), already paid, or locked with the reason spelled out.

<PaymentPage token={order.payment.token} statusHref={`/orders/${statusToken}`} />

A null token renders nothing — the server mints one only while money is owed, so its absence is the answer, not an error state to design around.

Localization

Czech and English ship in the bundle; I18nProvider picks by language subtag. Bring your own pack with messages={…} for anything else.

License

MIT