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

rainy-city-ui-lib

v0.0.29

Published

Rainy City UI Library

Readme

rc-ui-lib

A small Stencil component library used for team proof-of-concept and demos.

This repository contains a tiny set of Web Components built with Stencil. It's intended as a lightweight, shareable UI library to explore Stencil and gather feedback from the team. At the moment it contains a couple of presentational components (modal, toast, buttons, etc.) for demo purposes.

Included components (demo-level)

  • rc-atc-button — Add-to-cart style button (demo)
  • rc-event-button — Event-style button (demo)
  • rc-modal — Modal/dialog (presentational)
  • rc-spinner — Simple spinner
  • rc-toast — Toast notifications + rc-toast-container

More components may be added if the team wishes to continue with Stencil.

Quick start

Prerequisites: Node.js (16+ recommended), npm (or yarn/pnpm).

Install dependencies:

PowerShell / Command Prompt:

npm install

Start a dev server (live rebuild + serve):

npm run start

Build the production bundle:

npm run build

Run tests (unit + e2e):

npm run test

Using the components

You can either consume the compiled distribution from dist/ or load the loader script from loader/ for CDN-like usage.

When developing, import components directly in your app using standard Web Component tags after the library is built or served. Example markup for rc-modal and rc-toast:

<rc-modal open>
	<div slot="header">Modal title</div>
	<div slot="body">Modal content</div>
	<div slot="footer"><button>Close</button></div>
</rc-modal>

<rc-toast-container></rc-toast-container>

See component readme.md files in src/components/* for per-component notes.

Accessibility notes

These components are provided as demo examples. A minimal accessibility pass has been applied to a few components (ARIA roles/live regions for toasts, keyboard-close for modals). If you plan to use this library in production, please treat these as starting points and perform accessibility testing (screen readers, keyboard-only, color contrast) before shipping.

Development notes

  • This project uses Stencil (see @stencil/core in devDependencies).
  • Sass support is enabled via @stencil/sass.
  • The library exposes a small global store (@stencil/store) used by the toast system.

If you want me to wire up example pages or a small demo app showing each component in isolation, I can add a minimal www/ demo and some usage examples.

License

MIT