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

orphos

v0.50.2

Published

A modern React UI component library built on Base UI and Tailwind CSS v4.

Readme

Orphos

A modern React UI component library built on Base UI and Tailwind CSS v4.

Installation

npm install orphos
# or
bun add orphos

Peer Dependencies

npm install react tailwindcss@^4

Recommended: for the icon examples used in the docs, install @tabler/icons-react.

npm install @tabler/icons-react

Setup

Import Tailwind CSS and the theme in your main CSS file:

@import "tailwindcss";
@import "orphos/theme.css";
@source "../node_modules/orphos/dist";

Portal stacking context

Base UI uses portals for components that render popups (Dialog, Popover, Select, etc.). To ensure portaled components appear on top of the entire page, add:

// layout.tsx
<body>
  <div className="root">
    {children}
  </div>
</body>
/* styles.css */
.root {
  isolation: isolate;
}

iOS 26+ Safari support

Starting with iOS 26, Safari allows content beneath the UI chrome to be visible. For backdrops (Dialog, Sheet, etc.) to cover the entire visual viewport after scrolling, add:

/* styles.css */
body {
  position: relative;
}

Usage

import { Button } from "orphos/button";
import {
  Card,
  CardContent,
  CardDescription,
  CardFooter,
  CardHeader,
  CardTitle,
} from "orphos/card";
import { Input } from "orphos/input";
import { Label } from "orphos/label";

function LoginCard() {
  return (
    <Card className="w-full max-w-sm">
      <CardHeader>
        <CardTitle>Login to your account</CardTitle>
        <CardDescription>
          Enter your email below to login to your account
        </CardDescription>
      </CardHeader>
      <CardContent>
        <div className="flex flex-col gap-6">
          <div className="grid gap-1.5">
            <Label htmlFor="email">Email</Label>
            <Input id="email" type="email" placeholder="[email protected]" />
          </div>
          <div className="grid gap-1.5">
            <Label htmlFor="password">Password</Label>
            <Input id="password" type="password" />
          </div>
        </div>
      </CardContent>
      <CardFooter className="flex-col gap-1.5">
        <Button variant="primary" className="w-full">
          Login
        </Button>
      </CardFooter>
    </Card>
  );
}

Components

| Component | Description | |-----------|-------------| | Avatar | User avatar with fallback support | | Badge | Status indicators and labels | | Button | Primary action component with variants | | Card | Content container with header/footer | | Checkbox | Checkbox input control | | Context Menu | Right-click context menus | | Cropper | Image cropping utility | | Dialog | Modal dialogs | | Dropdown Menu | Dropdown menus with triggers | | Empty | Empty state placeholders | | Field | Form field wrapper with labels | | Input | Text input component | | Input Group | Grouped input with addons | | Kbd | Keyboard shortcut display | | Label | Form labels | | Popover | Floating popover panels | | Radio Group | Radio button groups | | Select | Select dropdown component | | Separator | Visual divider | | Sheet | Slide-out side panels | | Sidebar | Navigation sidebar | | Skeleton | Loading skeleton placeholders | | Slider | Range slider input | | Spinner | Loading spinner | | Switch | Toggle switch component | | Tabs | Tabbed navigation | | Textarea | Multi-line text input | | Toast | Toast notifications | | Toggle | Toggle button | | Tooltip | Hover tooltips | | Typography | Text styling components |

Local docs

The playground package contains the live component docs and examples.

bun install
bun run dev --filter=playground

License

MIT © 2025 Asterism.