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

@patterninc/react-ui

v5.0.3

Published

A reusable React component library for Pattern applications.

Readme

React UI

A reusable React component library for Pattern applications.

Table of Contents


Introduction

React UI provides a set of consistent, accessible, and customizable UI components for Pattern web applications.


Installation

pnpm add @pattern/react-ui

Usage

import { Button } from '@pattern/react-ui'

export function MyComponent() {
  return <Button>Click me</Button>
}

Tailwind CSS v4 Guide

This library provides the theme configuration for Tailwind CSS v4 used across all Pattern EXP applications. For comprehensive documentation on:

  • Available colors and theme configuration
  • Migration from legacy utility classes
  • Best practices and usage examples
  • Integration guidelines for all apps

See: TAILWIND_V4_GUIDE.md (workspace root)


Development

  1. Install dependencies:
    pnpm install
  2. Run Storybook:
    pnpm storybook

When making updates, it is important to get changes approved by the UX team and team Nexus. Please utilize Chromatic to demo your updates before getting your PRs raised.


Storybook & Chromatic

  • View components in isolation with Storybook: pnpm storybook
  • Publish visual changes for review with Chromatic: pnpm chromatic

Chromatic Environment Setup

Before running Chromatic, you'll need to generate a .env file with the necessary credentials and tokens. This process fetches secure parameters from AWS Parameter Store.

Prerequisites

Ensure you have AWS CLI access configured by following the instructions in the Pattern Wiki - AWS CLI Access.

NOTES:

  • You may need to first install the AWS CLI here before you can continue with the aws configure sso command.
  • There is a registration prompt that appears in the setup that is not specified in the wiki, but you can just press return or enter to continue on in the setup.

Steps to Generate Environment Variables

  1. Authenticate with AWS: Login to AWS through the command line using the development profile:

    aws sso login --profile dev
  2. Generate the .env file: Run the environment setup script to fetch parameters from AWS Parameter Store:

    bash scripts/env.sh --profile dev
  3. Verify setup: The script will create a .env file populated with Chromatic token mappings from the AWS development account parameter store.

  4. Run Chromatic: You can now run Chromatic as usual within your application:

    pnpm chromatic

Note: The .env file contains sensitive information and should never be committed to version control. It's already included in .gitignore for security.


Versioning & Changelog

Team Nexus will handle version bumping and change log entries.

  • Bump version and generate changelog:
    pnpm changelog

Contributing

  • Please open a pull request for any changes.
  • Follow our code style and review process.
  • All changes require approval from UX and team Nexus.