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

@bombig/ui

v0.0.42

Published

Bombig.net Design System

Downloads

3,090

Readme

npm version npm bundle size npm downloads License: MIT TypeScript React Tests Coverage Storybook code style: prettier Made with React Aria Built with Radix Figma Design System

Modern React component library powering all bombig.net websites and apps - crafted with ❤️ using React Aria, Radix UI, Tailwind CSS, and TypeScript.

DocumentationGitHubnpmCoverage Report

✨ Features

  • 🎯 Built with React Aria and Radix UI primitives
  • 🎨 Design tokens managed through Figma Tokens Studio
  • 💅 All styles customizable via className prop
  • ♿️ Accessible components out of the box
  • 📦 Full TypeScript support with strict type checking
  • 📱 Responsive by default
  • 🚀 Optimized for rapid prototyping
  • 🧪 Comprehensive test suite with Jest and Testing Library
  • 🎭 Accessibility testing with jest-axe
  • 📝 ESLint and Prettier integration for code quality

📦 Installation

# Using pnpm (recommended)
pnpm add @bombig/ui

# Using npm
npm install @bombig/ui

# Using yarn
yarn add @bombig/ui

💻 Usage

  1. Import the CSS in your app's entry point (e.g., app.tsx, _app.tsx, or main.tsx):
import '@bombig/ui/styles';
  1. Use the components in your app:
import { Button } from '@bombig/ui';

function App() {
    return <Button>Click me</Button>;
}

That's it! No additional configuration needed. The components will work out of the box with all the necessary styles and design tokens.

📚 Documentation

Visit our Storybook documentation to:

  • Explore all components
  • View live examples
  • Read usage guidelines
  • Try components interactively

🛠 Development

This is bombig.net's internal design system, crafted for our projects and rapid prototyping. While primarily for internal use, we maintain high code quality standards and welcome external usage.

# Install dependencies
pnpm install

# Start development
pnpm dev

# Run Storybook
pnpm storybook

# Run tests
pnpm test

# Run tests in watch mode
pnpm test:watch

# Run tests with coverage
pnpm test:coverage

# Type check
pnpm type-check

# Lint code
pnpm lint

# Format code
pnpm format

# Validate all (types, lint, format)
pnpm validate

VS Code Setup

We recommend using VS Code with the following extensions for the best development experience:

  • ESLint
  • Prettier
  • Tailwind CSS IntelliSense

The repository includes recommended VS Code settings and extensions in the .vscode directory.

Code Quality

The project uses:

  • TypeScript with strict mode enabled
  • ESLint for code quality
  • Prettier for code formatting
  • Jest and Testing Library for testing
  • jest-axe for accessibility testing

All code changes are validated through GitHub Actions CI/CD pipeline, which checks:

  • Type correctness
  • Linting rules
  • Code formatting
  • Test coverage
  • Build success

🤝 Contributing

While this is our internal tool, we welcome community contributions:

  • 🐛 Report bugs and issues
  • 💡 Propose new components
  • 🔧 Submit pull requests
  • 📝 Improve documentation

Please ensure your contributions pass all validation checks:

pnpm validate

⚖️ License

MIT License - see the LICENSE file for details.

Note: The MIT license covers the component library code only. Bombig.net brand assets and logos remain proprietary.