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

bambiui

v0.1.1

Published

Markup-first, source-distributed UI components with a local-file-copy CLI.

Readme

bambiui

Markup-first, source-distributed UI components with a local-file-copy CLI.

This is the standalone bambiui platform repo. It keeps the lightweight src/core -> src/generator -> src/registry -> src/cli flow and currently focuses on the locally authored button and tabs components.

Quick start

pnpm install
pnpm bambi init --yes
pnpm bambi add tabs --framework react

The CLI writes source files into your project; installed output does not import runtime @bambiui/* packages.

CLI

bambi init
bambi doctor
bambi doctor --json
bambi list
bambi list --json
bambi add button
bambi add tabs --framework react
bambi add tabs --plan
bambi add tabs --registry-url https://bambiui.com

Supported framework targets:

  • vanilla
  • react
  • solid
  • svelte
  • vue

Component support

These components are authored in this repo under src/core/components and generated through the TypeScript generator:

  • button
  • tabs

The public registry is served from https://bambiui.com/registry.json with generated source files under https://bambiui.com/registry/generated/. The local registry metadata supports vanilla output plus framework-native generated wrappers for React, Solid, Svelte, and Vue.

Run bambi list to see the currently available components.

Development

Architecture and contribution docs:

pnpm build             # TypeScript + Vite demo build
pnpm check:cli         # CLI typecheck + smoke test
pnpm check:generated   # generated output install + TS/TSX compile validation
pnpm smoke:templates   # install button/tabs into template fixture copies and compile
pnpm templates:update   # refresh committed template outputs using the CLI
pnpm smoke:pack        # pack tarball, install it, and run installed bambi binary
pnpm check             # build + CLI + template checks
pnpm check:publish     # full check + packed install smoke

Useful files:

src/core                 Local component source of truth
src/generator            Generic install planning and source transforms
src/registry             Local component registry and framework providers
src/cli                  CLI commands and project file writer
apps/templates           Template fixtures for framework install checks
scripts/smoke-cli.mjs    End-to-end CLI smoke test and generated TS/TSX compile validation
scripts/smoke-templates.mjs Template install smoke test
scripts/update-templates.mjs Refresh committed template outputs
scripts/smoke-pack.mjs  Packed npm tarball install smoke test

Publish validation

Before publishing, run:

pnpm check:publish

This verifies the local build, CLI smoke tests, template installs, and a real pnpm pack tarball install into a temporary project.

Migration note

This repo is intended to replace the old platform monorepo as a fresh, standalone codebase. New components should be authored in src/core/components and exposed through src/registry when they are ready.