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

@synu/synu

v0.1.0

Published

Performance-first, token-native UI design system for React. Install this package to get all Synu libraries: @synu/react, @synu/theme, @synu/core, and @synu/tokens.

Readme

Synu

Performance-first, token-native UI design system for React.

This is the meta-package — installing synu gives you everything:

| Package | Description | |---|---| | @synu/react | React components, hooks, and theming context | | @synu/theme | Precompiled CSS — variables, reset, component styles | | @synu/core | Headless primitives — state machines, a11y, focus management | | @synu/tokens | Design token definitions — TypeScript + JSON + CSS variables |

Quick Start

npm install synu
import '@synu/theme';
import { ButtonRoot, ButtonLabel, ThemeProvider } from 'synu';

function App() {
  return (
    <ThemeProvider>
      <ButtonRoot variant="primary">
        <ButtonLabel>Get Started</ButtonLabel>
      </ButtonRoot>
    </ThemeProvider>
  );
}

Install Individual Packages

If you only need specific parts of Synu:

# Just the React components
npm install @synu/react @synu/theme

# Just the headless core (framework-agnostic)
npm install @synu/core

# Just the design tokens
npm install @synu/tokens

Features

  • Zero Runtime CSS — No CSS-in-JS overhead. Precompiled static CSS.
  • Token-Native — Every value is a CSS custom property. Theming is predictable.
  • Accessible by Default — WAI-ARIA 1.2, keyboard navigation, focus management built-in.
  • Composable — Compound component patterns. No prop explosion.
  • Dark Mode — First-class light/dark support via ThemeProvider.
  • TypeScript — Full type safety with exported interfaces for every component.
  • Tree-Shakeable — ESM + CJS dual publish. Only ship what you use.

Documentation

Visit synu.dev for the full documentation, interactive demos, and API reference.

License

MIT