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

@stridge/noctis

v1.0.0-beta.32

Published

![license](https://img.shields.io/badge/license-MIT-blue) ![coverage](https://img.shields.io/badge/coverage-100%25-brightgreen)

Readme

@stridge/noctis

license coverage

The Stridge design system, and the single package consumers install. It pairs Base UI behavior with precompiled, framework-neutral component CSS on the semantic token layer, and ships the authoring substrate every primitive builds on — the polymorphic Primitive base, the Surface elevation primitive, render utilities, Icon, and the unified NoctisProvider (CSP + theme + locale/direction). It re-exports the design tokens, theme engine, and i18n through subpaths so apps depend on one package.

Styling

Components are styled by hand-authored, per-component .css under @layer noctis.components, keyed off data-slot — no styling framework required. Import the one stylesheet:

// app CSS entry
@import "@stridge/noctis/styles.css";

Authoring with Tailwind is optional. Tailwind users additionally import the utility bridge and pull class helpers from the adapter subpath:

@import "@stridge/noctis/tailwind.css"; // mints bg-background-style utilities
import { cn, tv } from "@stridge/noctis/tailwind";
import { Primitive } from "@stridge/noctis";

Usage

import { NoctisProvider } from "@stridge/noctis"; // foundation lives on the root barrel
import { Button } from "@stridge/noctis/button"; // each styled component ships from its own subpath
import { Dialog } from "@stridge/noctis/dialog";

<NoctisProvider>
  <Button>Save</Button>
</NoctisProvider>;

The root barrel is the foundation only (NoctisProvider, Primitive, Surface, Icon, the render/copy/motion utilities, ThemeScope + its preset maps, VisuallyHidden, UI_PACKAGE). Every styled component imports from its own deep path, @stridge/noctis/<component> — explicit imports, tree-shaking by default.

Subpaths

  • @stridge/noctis — the foundation barrel (NoctisProvider, Primitive, Surface, Icon, render/copy/motion utilities, ThemeScope + its RADIUS_PRESETS/DENSITY_PRESETS/FONT_SCALE_PRESETS, VisuallyHidden, UI_PACKAGE). Foundation only — no styled components.
  • @stridge/noctis/<component> — each styled component's own subpath (@stridge/noctis/button, @stridge/noctis/dialog, …); Surface and Icon are also reachable here. The exports map is generated by pnpm --filter @stridge/noctis exports:gen (freshness-checked in CI).
  • @stridge/noctis/props — RSC-safe *Props() escape-hatch builders (no "use client" boundary).
  • @stridge/noctis/styles.css — the precompiled component stylesheet.
  • @stridge/noctis/tailwind.css — the optional Tailwind utility bridge.
  • @stridge/noctis/tailwind — the optional Tailwind adapter (cn, tv).
  • @stridge/noctis/tokens (+ /react) — re-exported @stridge/noctis-design-tokens.
  • @stridge/noctis/theme (+ /react) — re-exported @stridge/noctis-theme-engine.
  • @stridge/noctis/i18n (+ /messages) — re-exported @stridge/noctis-intl + the default catalog.
  • @stridge/noctis/primitives/<name> — the generated per-name Base UI primitive re-exports (no aggregate barrel).

Build & checks

build runs tsdown then scripts/bundle-css.mjs; check:publish runs publint + size-limit. Component CSS is governed by stylelint.

The component authoring contract lives in COMPONENTS.md, the slot catalog in SLOTS.md, and the repo-wide rules in /AGENTS.md.