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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@creo-team/buzz-ui

v0.1.2

Published

Elegant, SSR-friendly React components with clear theming and great DX.

Readme

Buzz UI

Elegant, SSR-friendly React components with clear theming and great DX.

Installation

npm install @creo-team/buzz-ui

Peer deps:

npm install react react-dom

Usage

// SSR-safe imports
import { Button, Card } from '@creo-team/buzz-ui/server'

// Client-only imports (hooks, contexts, interactive components)
// import { Tooltip, Modal, ThemeProvider } from '@creo-team/buzz-ui/client'

export default function Example() {
	return <Card header="Hello"><Button>Click me</Button></Card>
}

Code blocks can add a copy button with the CopyButton:

import { CopyButton } from '@creo-team/buzz-ui/client'

export function MySnippet() {
	return <CopyButton value="npm i @creo-team/buzz-ui" label="install" />
}

Server vs Client

  • @creo-team/buzz-ui/server: SSR-safe primitives, layout, navigation, data display
  • @creo-team/buzz-ui/client: interactive/animated overlays, providers, hooks

This split prevents client-only code from executing on the server in Next.js.

Components

Primitives

  • Button - Multiple variants with hotkey support

Forms

  • TextInput, Textarea, Select
  • Checkbox, RadioGroup

Overlays

  • Tooltip - Smart positioning, overflow prevention
  • Modal - Backdrop, animations, document title
  • Drawer - Slide-out panels
  • Dropdown - Context menus
  • CommandPalette - Command search interface
  • Toast - Beautiful notifications (react-hot-toast)

Layout

  • Card - Content containers
  • TopNav - Navigation header
  • Footer - Page footer
  • SidebarNav - Side navigation
  • SidebarNavEnhanced - Advanced sidebar with search, sorting, and grouping

Data Display

  • Table - Data tables
  • CodeBox - Syntax highlighted code
  • Alert, Banner - Notifications
  • Badge, Chip - Labels
  • Avatar - User avatars
  • Skeleton - Loading states
  • Progress - Progress indicators

Navigation

  • Breadcrumbs - Navigation trail
  • Tabs - Tab navigation
  • Pagination - Page navigation
  • Menu - Menu dropdowns

Miscellaneous

  • Accordion - Collapsible content
  • Sheet - Slide-over panels
  • Stepper - Step indicators
  • InfoTip - Information tooltips
  • ThemeSwitcher - Theme selection

Theming

Buzz UI uses a comprehensive CSS variable system for complete theme customization. Choose from 6 built-in themes or create your own.

// In your app root (client)
import { ThemeProvider } from '@creo-team/buzz-ui/client'
import { createThemeConfig, ThemePreset } from '@creo-team/buzz-ui'

const themes = [
	createThemeConfig(ThemePreset.Light),
	createThemeConfig(ThemePreset.Dark),
	// Add more themes as needed
]

export default function Root({ children }) {
	return <ThemeProvider themes={themes} defaultTheme="light">
		{children}
	</ThemeProvider>
}

See THEMING.md for the complete theming guide with all CSS variables.

SSR with Next.js

  • Import SSR-safe components from /server and client-only from /client
  • For client providers (ThemeProvider, ToastProvider), wrap in client components or dynamic imports with ssr: false

Contributing

See CONTRIBUTING.md for setup, coding standards, and release process.

Testing

We use Vitest + Testing Library. Run:

npm run test

Aim for high coverage by adding unit tests for each component and state.

License

MIT