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

@andabove/gum-nuxt

v0.1.0

Published

Nuxt module for GUM — CSS injection, Gum component auto-import, optional Google Fonts

Readme

@andabove/gum-nuxt

Zero-config Nuxt module for the GUM design system. Configured for public publication on the npm registry (registry.npmjs.org, @andabove scope). The first publish is still user-gated by the Release workflow.

Install

pnpm add @andabove/gum-nuxt

Once published, consumers need no registry mapping and no token, because the package is public. This module has no 0.0.x releases, so the transitional GitHub Packages note in the root README does not apply to it.

In a monorepo workspace (this repo's apps/realworld):

pnpm add @andabove/gum-nuxt@workspace:*

Usage

// nuxt.config.ts
export default defineNuxtConfig({
  modules: ["@andabove/gum-nuxt"],
});

The module:

  • Injects @andabove/gum-foundation/style.css (tokens + Tailwind v4 theme)
  • Registers the Tailwind v4 Vite plugin so utility classes resolve
  • Auto-imports every Gum component exported by @andabove/gum-foundation (GumButton, GumMenu, …)
  • Loads Google Sans Flex and Google Sans Code from Google Fonts by default

Options

export default defineNuxtConfig({
  modules: ["@andabove/gum-nuxt"],
  gum: {
    // Set false to skip the Google Fonts CDN links (self-host instead)
    googleFonts: true,
  },
});

Theme

Toggle light/dark with data-theme on <html>:

document.documentElement.setAttribute("data-theme", "dark");

Auto-imported components

The component list is not hand-maintained. src/component-names.ts is generated from packages/ui/src/components by pnpm run generate:components-json (the same run that writes the repo-root components.json), and pnpm run check:component-sync fails CI when it drifts from the @andabove/gum-foundation exports.

Build and publish

  • pnpm --filter @andabove/gum-nuxt run build runs nuxt-module-build build (@nuxt/module-builder) and emits dist/module.mjs + dist/types.d.mts.
  • Inside the workspace, exports resolves to src/module.ts (Nuxt loads TS directly), so apps/realworld and local dev need no build step.
  • On pnpm pack / pnpm publish, publishConfig.exports swaps the entry to dist/, prepack rebuilds, and pnpm rewrites the workspace:* dependencies to concrete versions.
  • The Release workflow (.github/workflows/release.yml) publishes this package in lockstep with @andabove/gum-tokens and @andabove/gum-foundation.

Notes

  • Components ship from @andabove/gum-foundation (build that package, or rely on workspace dist).
  • Iconify is not wired here; Gum icons are SVG assets inside @andabove/gum-foundation.

License / usage

UNLICENSED. Public publication is user-gated and still waits on the license decision (ABO-302). No rights are granted by default; usage terms are at &above's discretion. Contact &above before using it outside &above projects.