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

@nebula-lab/primitives

v1.0.0

Published

Unstyled polymorphic base primitives (Slot, Primitive, cn, ref/event composition, scoped context) — the foundation every other @nebula-lab/* package builds on.

Readme

@nebula-lab/primitives

Low-level DOM abstractions and layout components for building accessible, composable React applications. Unstyled and polymorphic — no visuals, no opinions about styling; just behavior and composition that every other @nebula-lab/* package builds on.

Installation

npm install @nebula-lab/primitives
# or
yarn add @nebula-lab/primitives
# or
pnpm add @nebula-lab/primitives
# or
bun add @nebula-lab/primitives

Peer dependencies: react ^19.0.0, react-dom ^19.0.0. Works with any of the above package managers — pick whichever your project already uses.

Module format: ESM only (no CommonJS build). Works out of the box with any bundler (Vite, Next.js, Webpack 5+, esbuild, Parcel) or native Node.js ESM. A plain CommonJS require('@nebula-lab/primitives') is not supported and throws ERR_REQUIRE_ESM — use import (or dynamic import() from a CJS file) instead.

TypeScript / JavaScript: Ships hand-written .d.ts types alongside the JS output, but nothing requires TypeScript — plain JavaScript works identically. TypeScript users get full autocomplete/type-checking (including the polymorphic as/asChild prop inference) for free; JavaScript users just don't see the type annotations.

Features

🎯 Layout Utilities

Box, Flex, Grid, Stack, Container, Center, AspectRatio, Inline — polymorphic layout building blocks over Primitive, styled with static Tailwind classes (no arbitrary-value runtime string building). Plus HStack/VStack (row/column Flex aliases with sensible gap/align defaults), Wrap (an Inline alias), and Spacer (an aria-hidden flex-grow filler).

📝 Text Components

Text, Heading, Paragraph, Code, Pre, Link — semantic text elements, each resolving its own sensible default tag (span, h1-h6 via level, p, code, pre, a) independent of Primitive's own div fallback.

♿ Accessibility

VisuallyHidden, FocusScope, DismissibleLayer, Boundary, RovingFocusGroup + FocusItem — focus trapping, outside-click/Escape dismissal (topmost-layer-only via an internal open-layer stack), roving tabindex keyboard navigation, and an error boundary.

🎛️ Form Primitives

Button, Input, Textarea, Label, Form, NativeSelect — unstyled form controls with sane defaults (Button defaults type="button"; Input/Textarea map invalid to aria-invalid; Textarea supports autoResize; Label supports a required indicator; Form always calls preventDefault() before your onSubmit; NativeSelect wraps the real <select> element, not a custom listbox — for a fully custom dropdown see @nebula-lab/headless's Select).

👁️ Visibility

Portal, Presence, Overlay — SSR-safe portal rendering, an exit-animation-aware presence state machine (waits for animationend/transitionend before unmounting), and a bare fixed inset-0 overlay layer with zero color/opacity of its own.

📍 Positioning

Popper / PopperAnchor / PopperContent — side/align/offset placement, collision-flip, and viewport clamping for anchor-positioned surfaces (popovers, menus, tooltips), built from scratch with no external dependency. Also exports a pure computePosition function and usePopperContext for pushing a virtual anchor (any object with getBoundingClientRect()) into Popper's context.

🖼️ Media

Image — an unstyled polymorphic img wrapper (no load/error tracking — see @nebula-lab/react-ui's Avatar for that).

🔗 Composition

Primitive — a polymorphic component supporting the as prop (tag swap) and asChild (via Slot, merges props/ref/className/style onto a single child instead of adding a wrapper element). Slot / Slottable back asChild everywhere in the library. createContextScope builds scoped React contexts for compound components (used throughout @nebula-lab/headless).

📡 Observers

Note: the ResizeObserver/IntersectionObserver/MutationObserver hooks (useResizeObserver, useIntersectionObserver, useMutationObserver) live in @nebula-lab/hooks, not here — primitives has zero in-workspace dependencies by design, so observer hooks belong one layer up. Components in this package that need equivalent behavior (FocusScope, DismissibleLayer) implement it locally instead of importing across the boundary.

🎭 Interaction

Focus management (FocusScope, RovingFocusGroup), dismissible-layer patterns (DismissibleLayer), and overlay detection (Presence, Portal) compose to build dialogs, popovers, menus, and tooltips without pulling in a separate headless library.

Example

import { Box, Flex, Stack, Text, Heading } from '@nebula-lab/primitives';

function Card({ title, children }: { title: string; children: React.ReactNode }) {
  return (
    <Box as="section" className="rounded-lg border p-6">
      <Stack gap={4}>
        <Heading level={3}>{title}</Heading>
        <Flex direction="col" gap={2}>
          <Text>{children}</Text>
        </Flex>
      </Stack>
    </Box>
  );
}

Primitive and polymorphism

Every component in this package is (directly or indirectly) Primitive with a resolved default tag:

import * as React from 'react';
import { Primitive } from '@nebula-lab/primitives/primitive';
import type { PolymorphicComponentPropsWithRef } from '@nebula-lab/primitives/types';

type BoxProps<E extends React.ElementType = 'div'> = PolymorphicComponentPropsWithRef<E>;

const Box = React.forwardRef(
  <E extends React.ElementType = 'div'>({ as, ...props }: BoxProps<E>, forwardedRef: React.Ref<unknown>) => (
    <Primitive as={as ?? 'div'} {...props} ref={forwardedRef} />
  ),
) as unknown as <E extends React.ElementType = 'div'>(
  props: BoxProps<E>,
) => React.ReactElement | null;

as swaps the rendered tag (<Box as="section">); asChild merges onto a single child via Slot instead (<Box asChild><a href="/">...</a></Box>) — no extra DOM node, and event handlers/className/style/ref compose rather than override.

Import

// barrel
import { Slot, Primitive, Box, Flex, Button, cn } from '@nebula-lab/primitives';

// or per-component subpath (identical runtime code, just explicit — and what
// tsup's per-entry build + the package.json `exports` map are keyed on)
import { Slot } from '@nebula-lab/primitives/slot';
import { Primitive } from '@nebula-lab/primitives/primitive';
import { cn } from '@nebula-lab/primitives/cn';

Conventions

One module per folder (src/<name>/<name>.ts(x) + index.ts barrel) — see component-library-architecture.md §9.1 at the repo root. Package index.ts and every folder's index.ts are re-exports only, no logic. primitives has no in-workspace dependencies — not even @nebula-lab/utilities or @nebula-lab/hooks — so small pieces of logic (focusable-element queries, outside-click detection) are duplicated locally rather than imported, keeping this package installable standalone.

Scripts

pnpm --filter @nebula-lab/primitives build      # tsup -> dist (ESM + .d.ts)
pnpm --filter @nebula-lab/primitives dev        # tsup --watch
pnpm --filter @nebula-lab/primitives typecheck  # tsc --noEmit

API reference

Every component here ships with a live Storybook entry (controls, source, interaction tests) — that's the authoritative API reference, not this README: https://tripathirajan.github.io/nebula/

Contributing

See the monorepo's CONTRIBUTING.md.

License

MIT