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

@archora/ui

v0.2.0

Published

Dark-first Vue 3 component library for dashboards and internal tools.

Readme

@archora/ui

npm minzip CI license

Dark-first Vue 3 component library for dense dashboards and internal tools.

Not another general-purpose marketing kit. Archora is built for the screens where people spend the whole workday: observability panels, admin consoles, release pipelines — high information density, calm visuals, readable under load.

pnpm add @archora/ui
import { ArchButton } from "@archora/ui";
import "@archora/ui/styles.css";
<template>
  <ArchButton variant="primary">Deploy</ArchButton>
</template>

Why archora-ui

  • Dark-first, not dark-as-an-afterthought. Designed in dark, with a tuned light theme — both shipped, both verified.
  • Dense by default. Compact rhythm, data tables, virtual scrolling, keyed rows, filters and overlays — primitives for tools, not landing pages.
  • Themed by tokens, not config objects. Set a handful of --arch-color-* base colors on a data-theme selector; surfaces, muted text, borders and primary hover/active states derive via color-mix. SSR-safe runtime theming with defineTheme / setAccent.
  • Tiny per component. Side-effect-free ESM: a single ArchButton import is ~0.6 kB brotli, the whole library ~20 kB. A bundle budget guards regressions.
  • Accessible by default. Keyboard support, visible focus, semantic ARIA — interactive components are checked against axe-core in CI.

Why not Vuetify / PrimeVue / Element Plus

Those are excellent broad, light-first, Material/enterprise kits aimed at general apps. Archora deliberately trades breadth and theming layers for a narrow target: a dense dark dashboard aesthetic out of the box, a token contract instead of a theming framework, and a small surface you can read end to end. If you're building a public marketing site, reach for the broad kits. If you're building the internal tool behind it, this is for you.

Theming

A theme is a minimal set of base colors scoped to a data-theme name; derived tokens compute from it, so you don't hand-pick dozens of values:

[data-theme="brand"] {
  color-scheme: dark;

  --arch-color-bg: #080b12;
  --arch-color-fg: #f8fafc;
  --arch-color-border: #243044;
  --arch-color-primary: #8b5cf6;
  --arch-color-accent: #22d3ee;
}

At runtime, defineTheme injects the rule and derives a WCAG-readable text color for the primary; it returns the CSS string and skips DOM work without a document, so it is SSR-safe:

import { defineTheme, setAccent, useTheme } from "@archora/ui";

defineTheme("brand", { bg: "#080b12", fg: "#f8fafc", primary: "#8b5cf6" });
useTheme().setTheme("brand");

setAccent("#22d3ee"); // recolor the current theme's accent on the fly

Built-in themes: dark, light, system.

Documentation

Components, live sandboxes, theming and tokens — see the documentation site.

License

MIT