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

@mariojgt/neo-react

v1.0.0

Published

The Dev Realm Neo-Brutalist React component library.

Downloads

147

Readme

@thedevrealm/neo-react

React component library for The Dev Realm Neo-Brutalist design system. Fully typed with TypeScript. Tree-shakeable. Peer dep: React ≥ 17.

Install

npm install @thedevrealm/neo-css @thedevrealm/neo-react

Setup

Import the CSS once in your app root:

// app/layout.tsx  or  src/index.tsx
import '@thedevrealm/neo-css/dist/neo.css'

Components

NeoButton

import { NeoButton } from '@thedevrealm/neo-react'

<NeoButton variant="primary" size="md">Download</NeoButton>
<NeoButton variant="accent" size="lg">Boost</NeoButton>
<NeoButton variant="ghost">Cancel</NeoButton>
<NeoButton variant="danger" disabled>Delete</NeoButton>

Props: variant (primary | accent | ghost | danger), size (sm | md | lg), all <button> HTML attrs.


NeoCard

import { NeoCard, NeoHeaderBar, NeoHR } from '@thedevrealm/neo-react'

<NeoCard variant="brand" pattern>
  <NeoHeaderBar title="Creative Studio" action={<span>★</span>} />
  <div style={{ padding: '1.5rem' }}>
    <NeoHR />
    <p>Content goes here.</p>
  </div>
</NeoCard>

Props: variant (default | brand | stat | filter), pattern (boolean), starred (boolean).


NeoTag / NeoBadge

import { NeoTag, NeoBadge } from '@thedevrealm/neo-react'

<NeoTag variant="accent" rotated>Hot</NeoTag>
<NeoBadge variant="success">Published</NeoBadge>

NeoInput / NeoTextarea

import { NeoInput, NeoTextarea } from '@thedevrealm/neo-react'
import { SearchIcon } from 'lucide-react'

<NeoInput label="Name" placeholder="Your name..." />
<NeoInput label="Search" icon={<SearchIcon size={16} />} placeholder="Search..." />
<NeoTextarea label="Message" placeholder="Write here..." />

NeoSelect

import { NeoSelect } from '@thedevrealm/neo-react'

<NeoSelect
  label="Level"
  placeholder="Choose..."
  options={[
    { value: 'beginner',     label: 'Beginner' },
    { value: 'intermediate', label: 'Intermediate' },
    { value: 'advanced',     label: 'Advanced' },
  ]}
/>

NeoAlert

import { NeoAlert } from '@thedevrealm/neo-react'
import { CheckIcon } from 'lucide-react'

<NeoAlert variant="success" title="Saved" icon={<CheckIcon size={20} />}>
  Your changes have been saved.
</NeoAlert>

variants: success | warning | error | info


NeoTable

import { NeoTable } from '@thedevrealm/neo-react'

<NeoTable
  rowKey="id"
  columns={[
    { key: 'name',     header: 'Course' },
    { key: 'students', header: 'Students' },
    { key: 'rating',   header: 'Rating',
      render: (v) => <span style={{ color: 'var(--neo-accent)' }}>★ {v}</span> },
  ]}
  data={courses}
/>

NeoToggleGroup / NeoToggleItem

import { NeoToggleGroup, NeoToggleItem } from '@thedevrealm/neo-react'

const [view, setView] = React.useState('grid')

<NeoToggleGroup value={view} onChange={setView}>
  <NeoToggleItem value="grid">Grid</NeoToggleItem>
  <NeoToggleItem value="list">List</NeoToggleItem>
  <NeoToggleItem value="table">Table</NeoToggleItem>
</NeoToggleGroup>

NeoTabBar / NeoTab

import { NeoTabBar, NeoTab } from '@thedevrealm/neo-react'

const [tab, setTab] = React.useState('details')

<NeoTabBar value={tab} onChange={setTab}>
  <NeoTab value="details">Details</NeoTab>
  <NeoTab value="media">Media</NeoTab>
  <NeoTab value="settings">Settings</NeoTab>
</NeoTabBar>

License

MIT — © The Dev Realm