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

@dangbt/pro-ui

v1.4.1

Published

React UI component library built on React Aria Components + Tailwind CSS v4

Readme

AI-native React UI library — 30+ accessible components built for Claude Code & Cursor

npm version npm downloads TypeScript React Aria Tailwind CSS v4 License: MIT GitHub Sponsors

Docs → · Live Showcase → · npm · MCP Server · Pro Template → · Sponsor ☕


What is pro-ui?

Production-ready React components built on React Aria Components (accessibility-first) and Tailwind CSS v4. Includes power components like ProTable and ProForm that handle complex patterns out of the box.

The only React UI library with a built-in MCP server — letting Claude Code, Cursor, and Windsurf scaffold pages using your exact component API with zero hallucinations.


Why pro-ui?

| Feature | pro-ui | shadcn/ui | MUI | Chakra | |---|:---:|:---:|:---:|:---:| | 🤖 MCP Server (AI-native) | ✅ | ❌ | ❌ | ❌ | | 🎨 Tailwind CSS v4 | ✅ | ✅ | ❌ | ❌ | | ♿ React Aria (accessible) | ✅ | ❌ | partial | partial | | 📊 ProTable (server-side) | ✅ | ❌ | ❌ | ❌ | | 📝 ProForm (schema-driven) | ✅ | ❌ | ❌ | ❌ | | 🏗️ CLI scaffold | ✅ | ❌ | ❌ | ❌ | | 🌙 Dark mode (CSS vars) | ✅ | ✅ | ✅ | ✅ | | 📦 Zero runtime CSS-in-JS | ✅ | ✅ | ❌ | ❌ |


Quick Start

npm install @dangbt/pro-ui
// main.tsx
import '@dangbt/pro-ui/tailwind.css'
import '@dangbt/pro-ui/theme.css'
import { ThemeProvider, ToastProvider } from '@dangbt/pro-ui'

root.render(
  <ThemeProvider defaultTheme="system">
    <ToastProvider />
    <App />
  </ThemeProvider>
)

Or scaffold a full project in 30 seconds:

npx create-pro-ui-app my-app

🤖 AI Integration (MCP Server)

Let Claude Code, Cursor, or Windsurf build pages using the correct component APIs — zero hallucinated props.

Claude Code

{
  "mcpServers": {
    "pro-ui": { "command": "npx", "args": ["mcp-pro-ui"] }
  }
}

Cursor / Windsurf

// .cursor/mcp.json  or  ~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "pro-ui": { "command": "npx", "args": ["mcp-pro-ui"] }
  }
}

Then ask: "scaffold me an admin dashboard page using pro-ui"

MCP tools: list_components · get_component_api · get_component_example · search_components · scaffold_page


Components

🏗️ Pro Components

| Component | Description | |---|---| | ProTable | Server-side data table — search, filter, sort, pagination, row selection, bulk actions | | ProForm | Schema-driven form with Zod — 10+ field types, grid layout, validation | | Layout | App shell — Sider (collapsible sidebar) or TopNav (pill/line/bold variants + sub-nav) |

📋 Form

Button · Input · Select · ComboBox · DatePicker · Checkbox · Switch · RadioGroup · Slider · TagField · FileUpload · DropZone · Autocomplete

🪟 Overlay

Modal · Drawer · Popover · Tooltip · DropdownMenu

📊 Display

Badge · Alert · Card · Avatar · Statistic · Empty · Steps · Progress · Skeleton · Divider · ColorPicker

🔧 Utilities

ThemeProvider · useTheme · ToastProvider · toast


ProTable Example

import { ProTable, Button } from '@dangbt/pro-ui'
import type { ProColumnType } from '@dangbt/pro-ui'

interface User { id: string; name: string; status: 'active' | 'inactive' }

const columns: ProColumnType<User>[] = [
  { title: 'Name',   dataIndex: 'name',   sortable: true },
  { title: 'Status', dataIndex: 'status', valueType: 'select',
    valueEnum: { active: { text: 'Active', color: 'success' }, inactive: 'Inactive' } },
]

<ProTable<User>
  columns={columns}
  rowKey="id"
  request={async ({ current, pageSize }) => {
    const res = await fetch(`/api/users?page=${current}&limit=${pageSize}`)
    const data = await res.json()
    return { data: data.items, total: data.total, success: true }
  }}
  toolBarRender={() => [<Button key="add" variant="primary">+ Add</Button>]}
  rowSelection={{ onChange: (keys) => console.log(keys) }}
/>

🚀 Pro Admin Template

Complete admin dashboard — 8 pages, Recharts charts, auth flow, dark mode.

→ Live Demo  |  → Get Template ($79)

Dashboard · Analytics · Users · Settings · Login · Register · Forgot Password · 404


AI Docs


Roadmap & Pro Tier

Pro components (RichTextEditor, KanbanBoard, GanttChart, AdvancedFilters, DataGrid…) are planned for v2.0.

View full roadmap →


Sponsors

pro-ui is MIT-licensed and free forever. If it saves you time, please consider sponsoring:

| Tier | Price | Benefits | |---|---|---| | ☕ Coffee | $5/mo | Name in SPONSORS.md | | 🚀 Pro Supporter | $15/mo | Early access to Pro components | | 🏢 Team | $50/mo | Logo on README + priority support |

Become a sponsor →


License

MIT © Dâng Bùi Tấn · SPONSORS.md