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

@bodewell/ui

v0.12.12

Published

A designer-centric prototyping framework with a pre-built component library.

Readme

Bodewell UI

NPM Version License: MIT

Bodewell UI is a designer-centric prototyping framework built to empower product designers and builders with limited coding experience to independently build, test, and validate high-fidelity, interactive prototypes. It is built on the belief that the future of product development belongs to the creator, and a strong framework is the key to bridging the gap between strategic vision and a tangible product.

The strategic focus of Bodewell is to make the common 80% of application development effortless, allowing you to focus on the unique 20% that delivers real value.


Quick Start

While you can install @bodewell/ui in any React project, the recommended way to get started is with our official starter kit. This will create a new project with Bodewell UI, Vite, React, and Tailwind CSS all pre-configured.

Run the following command in your terminal:

npm create bodewell-app@latest your-project-name

Local Development & Storybook

If you want to contribute to the Bodewell UI library itself, you can run our component workbench locally using Storybook.

1. Install Dependencies: First, clone this repository and install the required dependencies using pnpm.

pnpm install

2. Run Storybook: Next, run the Storybook command. This will start a local development server and open a new browser tab where you can view, test, and interact with all of the library's components in isolation.

pnpm run storybook

Basic Usage

Here's a simple example of how to use a Bodewell UI component in your project:

import React from 'react';
import { Button, Card, PageHeader } from '@bodewell/ui';

function MyAwesomePage() {
  return (
    <div>
      <PageHeader
        title="Welcome to Bodewell"
        description="This is a page built with our new component library."
      />
      <Card className="mt-8 p-4">
        <p className="mb-4">Here is some content inside a card.</p>
        <Button variant="primary" onClick={() => alert('Button clicked!')}>
          Get Started
        </Button>
      </Card>
    </div>
  );
}

export default MyAwesomePage;

The Bodewell Ecosystem

The Bodewell project is an integrated framework architected across three separate repositories to create a seamless experience from concept to creation.

  • @bodewell/ui (This Repository): A public, open-source component library distributed as an NPM package. This is the visual foundation of the ecosystem.

  • bodewell-app-starter: A public, open-source starter kit that provides the ideal local environment for building with Bodewell UI.

  • bodewell-app-builder: A private, hosted SaaS application featuring our AI Prototyping Assistant. It guides users through the strategic A.D.A.P.T. Framework to build applications from a solid strategic foundation.


Contributing

We welcome contributions from the community! If you'd like to contribute, please fork the repository and submit a pull request. For major changes, please open an issue first to discuss what you would like to change.

License

This project is licensed under the MIT License.