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

bentokitui

v1.1.2

Published

A lightweight, customizable Bento-style UI library for HTML, CSS, and React.

Readme

BentoKitUI 🧩

A lightweight, fully customizable Bento-style UI library for modern interfaces in HTML, CSS, and React.

✨ Features

  • Complete Component Suite: Cards, Grids, Buttons, Switches, Badges, Dividers and more
  • Rich Visual Effects: Glass morphism, reflections, depth effects, glows, and animations
  • Theming: Built-in themes (light, dark, cyber, pastel) and custom theme support
  • Flexible Integration: Use with React or vanilla HTML/CSS
  • Responsive By Design: Mobile-friendly with adaptive layouts
  • Developer Experience: Storybook documentation and examples

📦 Installation

npm install bentokitui

🛠 Usage

React

import { BentoCard, BentoGrid, BentoButton } from 'bentokitui';
import { BentoThemeProvider } from 'bentokitui';
import 'bentokitui/styles/bentokit.css';

function App() {
  return (
    <BentoThemeProvider theme="cyber">
      <BentoGrid columns={3} gap="1.5rem">
        <BentoCard 
          title="Welcome!" 
          description="I'm a Bento card with glow effect" 
          glow 
        />
        <BentoCard 
          title="Glass Card" 
          description="This card has glass morphism effect" 
          glass 
        />
        <BentoCard depth>
          <BentoButton label="Click Me!" variant="primary" ripple />
        </BentoCard>
      </BentoGrid>
    </BentoThemeProvider>
  );
}

HTML/CSS

<link rel="stylesheet" href="./styles/bentokit.css" />

<div class="bento-theme-dark">
  <div class="bento-grid" style="grid-template-columns: repeat(3, 1fr); gap: 1.5rem;">
    <div class="bento-card bento-glow">
      <h3 class="bento-title">Welcome!</h3>
      <p class="bento-description">I'm a Bento card with glow effect</p>
    </div>
    <div class="bento-card bento-glass">
      <h3 class="bento-title">Glass Card</h3>
      <p class="bento-description">This card has glass morphism effect</p>
    </div>
    <div class="bento-card bento-depth">
      <button class="bento-button bento-button-ripple">Click Me!</button>
    </div>
  </div>
</div>

🧩 Components

Core Components

  • BentoCard: Versatile container with multiple visual effects
  • BentoGrid: Responsive grid layout system
  • BentoButton: Customizable buttons with different variants and animations
  • BentoImage: Image component with zoom, rotate, and reflection effects

Advanced Components

  • BentoSwitch: Toggle switch with customizable sizes and colors
  • BentoBadge: Notification badges with various styles
  • BentoProgressBar: Progress indicators with animation options
  • BentoSpinner: Loading spinners with size and color options
  • BentoDivider: Horizontal/vertical dividers with text support

Theming

  • BentoThemeProvider: Theme context provider with built-in and custom themes

🎨 Themes & Effects

Built-in Themes

  • Default: Dark modern interface
  • Light: Bright clean interface
  • Cyber: Neon futuristic style
  • Pastel: Soft color palette

Visual Effects

  • Glass: Glass morphism effect with backdrop blur
  • Glow: Subtle glow effect on hover
  • Depth: 3D depth effect with shadows
  • Reflection: Light reflection effect
  • Border Highlight: Accent-colored borders

Animations

  • Float: Gentle floating animation
  • Pulse: Subtle pulsing effect
  • Breathe: Breathing glow animation
  • Ripple: Water ripple effect for buttons

📚 Docs & Examples

  • Live Examples: examples/examples.html
  • Storybook: npm run storybook
  • Landing Page: docs/index.html

🧪 Development

npm run dev         # Vite dev server
npm run storybook   # Storybook documentation

📦 Build

npm run build       # Build library
npm run build-storybook # Build static Storybook

Made with ❤️ for modern UI lovers.