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

react-neumorphic

v1.0.14

Published

A modern neumorphic UI component library for React with shadcn-inspired CLI. Copy components directly into your project - no dependencies, full customization.

Readme

React Neumorphic UI

A modern neumorphic UI component library for React with shadcn-inspired CLI. Copy components directly into your project - no dependencies, full customization.

✨ Features

  • 🎨 Beautiful Neumorphic Design - Soft, elegant shadows and depth
  • Modern Stack - React 19, TypeScript, Tailwind CSS 4
  • �️ C-LI Tool - Add components with a single command
  • 📦 Copy, Don't Install - Own your components, customize freely
  • 🌙 Dark Mode Ready - Automatic light/dark theme support
  • 📱 Fully Responsive - Mobile-first design approach
  • Accessible - ARIA compliant components
  • 🎭 Storybook Docs - Interactive component playground

Quick Start

No installation required! Use npx to get started:

1. Initialize in your project

npx react-neumorphic init

This will:

  • Prompt you for component paths (components, utils, CSS)
  • Create utility functions (cn helper)
  • Add neumorphic CSS styles with shadow utilities
  • Auto-install dependencies (clsx, tailwind-merge)
  • Create neu.config.json for CLI configuration

2. Add components

npx react-neumorphic add button
npx react-neumorphic add card

Components are fetched directly from GitHub and added to your project!

Available components:

  • button - Neumorphic button with variants (default, soft, glass)
  • card - Neumorphic card component
  • badge - Badge component

Alternative: Shorter Command (After First Use)

Once npx has cached the package, you can use the shorter alias:

npx react-neu init
npx react-neu add button

4. Use in your app

import { NeuButton } from '@/components/ui/button';

function App() {
  return (
    <div className="p-8">
      <NeuButton variant="default">
        Click Me
      </NeuButton>
      
      <NeuButton variant="soft">
        Soft Button
      </NeuButton>
      
      <NeuButton variant="glass">
        Glass Button 
      </NeuButton>
    </div>
  );
}

Alternative: Install as Package

If you prefer to use components directly without copying source code:

npm install react-neumorphic

Then import:

import { NeuButton } from 'react-neumorphic';
import 'react-neumorphic/styles';

Available Components

  • button - Neumorphic button with variants (default, soft, glass)
  • card - Neumorphic card component
  • More coming soon...

CLI Alias (Optional)

For shorter commands, you can create an alias:

# Add to your ~/.bashrc or ~/.zshrc
alias neu="npx react-neu"

# Then use:
neu init
neu add button

Documentation

Run Storybook locally to see all components and their documentation:

git clone https://github.com/YOUR_USERNAME/react-neumorphic
cd react-neumorphic
npm install
npm run dev

Visit http://localhost:6006 to browse the component library.

How It Works

Similar to shadcn/ui, this library copies component source code directly into your project. This gives you:

  • Full control over the components
  • Ability to customize as needed
  • No dependency bloat
  • Easy to understand and modify

License

MIT