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

yappaflow-ui

v0.1.0

Published

An opinionated React + GSAP component library for art-gallery–grade websites — the design vocabulary for Yappaflow's AI site generator.

Readme

yappaflow-ui

An opinionated React + GSAP component library for building art-gallery–grade websites.

A website should feel like an art gallery, where every component is an exhibit and every empty space is part of the composition.

This is the design vocabulary used by Yappaflow's AI site generator. It's also published standalone for developers who want bold-minimal, motion-authored websites out of the box.

Docs: https://ui.yappaflow.com

Install

npm install yappaflow-ui

Peer dependencies: react >= 18, react-dom >= 18. GSAP and Lenis ship as direct deps — no extra install needed.

Quick start

import { GalleryShell, NavShell, FootShell } from "yappaflow-ui/shell";
import { ExhibitHero } from "yappaflow-ui/exhibits";
import "yappaflow-ui/styles.css";

export default function Page() {
  return (
    <GalleryShell theme="light">
      <NavShell brand="Studio" links={[{ label: "Work", href: "/work" }]} />
      <ExhibitHero
        eyebrow="Studio"
        headline={"Work you can\nlive inside."}
        subtext="A small practice for large ideas."
        cta={{ label: "See work", href: "/work" }}
        ambient="drift"
      />
      <FootShell brand="Studio" tagline="Small practice, large ideas." />
    </GalleryShell>
  );
}

GalleryShell is the single root wrapper — it mounts the theme provider, the GSAP + Lenis motion engine, and (optionally) the custom cursor. Everything else is a named component away.

Layers

  1. Tokens — design DNA exposed as --ff-* CSS custom properties (color, type, space, radius, motion).
  2. Motion — GSAP engine + Lenis smooth-scroll + declarative wrappers (Reveal, ScrollSection, Magnetic, Cursor, ScrambleText, AmbientLayer).
  3. Primitives — composition grammar (Frame, Column, Spread, Stack, Display, Body, Eyebrow, Mark).
  4. Shell — site chrome (GalleryShell, Exhibit, NavShell, FootShell).
  5. Exhibits — composed ready-to-ship patterns (ExhibitHero, and more).
  6. ThemeThemeProvider + ThemeToggle. Light default, dark toggle on every site.

Every layer imports only from layers below it. Tree-shakable subpath imports are published for every layer (yappaflow-ui/motion, yappaflow-ui/primitives, and so on) so AI-generated static sites stay lean.

Motion

Motion is authored as a rhythm score, not per-component tweens:

  • structure at 0ms → page shells in place
  • primary at 200ms → headline enters
  • secondary at 400ms → supporting copy
  • cta at 600ms → action

Pass a beat to <Reveal> and the animation lands on the right downbeat. Reduced-motion is honored everywhere.

Theming

Theme is controlled by a data attribute on the root (data-theme="light" | "dark"). Swap tokens once and restyle every site. <ThemeToggle /> flips the attribute with a single call.

License

MIT © Yappaflow.