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

@n3rd-ai/ui

v0.4.3

Published

Terminal-first UI framework for Next.js. ASCII everything. Zero images. Pure text.

Readme

@n3rd-ai/ui

Terminal-first UI framework for Next.js. ASCII everything. Zero images. Pure text.

CI npm bundle size license

┌──────────────────────────────────────────────────┐
│  Your product is an API.                         │
│  This gives it a face.                           │
│                                                  │
│  0 images. 0 icon fonts. 0 design decisions.     │
│  Import. Wrap. Ship.                             │
└──────────────────────────────────────────────────┘

Install

npm install @n3rd-ai/ui

Setup

// app/layout.tsx
import { N3rdProvider, N3rdFonts } from '@n3rd-ai/ui'
import '@n3rd-ai/ui/theme/unicorn.css'

export default function RootLayout({ children }) {
  return (
    <html lang="en" className={N3rdFonts.className}>
      <body>
        <N3rdProvider>{children}</N3rdProvider>
      </body>
    </html>
  )
}

Components

import { Box, Text, Button, Metric, Badge, Table, Nav } from '@n3rd-ai/ui'

Box

The core primitive. Everything lives in a box.

<Box border="single" title="system status" accent="success">
  <Text>All systems operational.</Text>
</Box>

// ┌─ system status ─────────────────┐
// │ All systems operational.         │
// └──────────────────────────────────┘

Button

<Button variant="primary">SUBMIT</Button>       // [ SUBMIT ]
<Button variant="danger">DELETE</Button>         // [ DELETE ]
<Button loading>DEPLOYING</Button>               // [ ⠋ DEPLOYING... ]
<Button href="/docs" external>DOCS</Button>      // [ DOCS ↗ ]

Metric

<Row>
  <Metric value={99.97} suffix="%" label="uptime" accent="success" />
  <Metric value={42} label="endpoints" />
  <Metric value={1.2} suffix="s" label="avg response" accent="warning" />
</Row>

Table

<Table
  columns={['project', 'status', 'score']}
  rows={[
    ['autoallow.com', { text: 'DEPLOYED', accent: 'success' }, '87'],
    ['candlelit.ai', { text: 'BUILDING', accent: 'warning' }, '--'],
  ]}
/>

// ┌─────────────────┬──────────┬───────┐
// │ project         │ status   │ score │
// ├─────────────────┼──────────┼───────┤
// │ autoallow.com   │ DEPLOYED │    87 │
// │ candlelit.ai    │ BUILDING │    -- │
// └─────────────────┴──────────┴───────┘

Toast

import { useToast } from '@n3rd-ai/ui/hooks'

const toast = useToast()

toast.success('Deployment complete.') // [✓] Deployment complete.
toast.error('Connection refused.') // [✗] Connection refused.

Themes

Four built-in presets. Switch by importing a different CSS file:

import '@n3rd-ai/ui/theme/unicorn.css' // violet → pink → cyan (default)
import '@n3rd-ai/ui/theme/classic.css' // green on black
import '@n3rd-ai/ui/theme/retro.css' // amber on black
import '@n3rd-ai/ui/theme/paper.css' // black on white

Override any token:

:root {
  --n3rd-accent-primary: #06b6d4;
  --n3rd-gradient: linear-gradient(90deg, #06b6d4, #22d3ee, #67e8f9);
}

All Components

| Category | Components | JS | | -------- | ------------------------------------------------------------------------- | --------- | | Layout | Box, Stack, Row, Grid, Divider, Page | 0kb (RSC) | | Display | Text, Heading, Badge, Metric, Table, Code, List, Logo, StatusLine, Footer | 0kb (RSC) | | Input | Button, Input | Client | | Feedback | Toast, Alert, Progress, Skeleton | Client | | Nav | Nav | Client |

Primitives: Cursor, Typewriter, Scanline

Hooks: useTypewriter, useKeyboard, useToast

Utils: drawBox(), formatTable()

Border Styles

<Box border="single">   // ┌──┐
<Box border="double">   // ╔══╗
<Box border="rounded">  // ╭──╮
<Box border="dashed">   // ┌╌╌┐
<Box border="none">     // no border

Bundle Size

Server components (Box, Text, Metric, etc.):     0kb JS
Client components (Button, Input, Toast):       ~3-5kb gzipped
Theme CSS:                                      ~2kb gzipped

License

MIT - Superstellar LLC