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

@micrographics-js/react

v0.3.0

Published

84 animated micro-UI components for React — signals, gauges, radar, terminal text, HUD elements

Readme

@micrographics-js/react

84 animated micro-UI components for React. Dark industrial terminal aesthetic. Pure SVG. Fully themeable via CSS custom properties.

Built for dashboards, HUDs, monitoring panels, developer tools, creative portfolios, and anywhere you want that retro-terminal look.

Preview

| Signals | Data | Gauges | Radar | |---------|------|--------|-------| | SignalMeter, PulseTag, StatusLight, HeartbeatLine, BatteryMeter, SystemLoad, WatchdogTimer... | WaveformLine, RadarSweep, HeatGrid, FrequencyBars, PacketFlow, DotChart... | DialGauge, Speedometer, CompassRose, PressureGauge, TankLevel, VoltageDisplay... | RadarReticle, CrosshairTarget, OrbitSystem, TargetReticle, MissionStatus... |

Install

npm install @micrographics-js/react @micrographics-js/core

Requires a license token. See purchase & setup below.

Quick Start

import { SignalMeter, PulseTag, DialGauge, RadarSweep } from "@micrographics-js/react";

export default function Dashboard() {
  return (
    <div style={{ background: "#0d0e17", padding: 24, fontFamily: "monospace" }}>
      <SignalMeter bars={5} speed={180} />
      <PulseTag label="ONLINE" />
      <DialGauge value={72} />
      <RadarSweep size={80} />
    </div>
  );
}

Components (84)

Pack 1 — Signals (23)

SignalMeter PulseTag StatusLight HeartbeatLine LoadBar BootSequence BatteryMeter Uptime PingIndicator ConnectionStatus AlertBanner ReadyBadge ScanLine NetworkPulse CPUSparkline ErrorRate MemoryBar SpinDial ScanBeam SystemLoad EventTicker SignalQuality WatchdogTimer

Pack 2 — Data Visualization (11)

DotChart BarSparkline FrequencyBars BinaryStream VUMeter HexDump WaveformLine RadarSweep PacketFlow HeatGrid ThermalBar

Pack 3 — Terminal Text (12)

GlitchCycler Typewriter GlitchText LogStream CounterUp BootLog MatrixRain KanaTag MicroStrip WeatherStrip ScrollingText BinaryCounter

Pack 4 — Decorative Chrome (11)

CornerOrnament Barcode PanelTitle PixelDiamond ChevronRow DataLabel SectorBadge RulerTick CoordLabel WireFrame HexGrid

Pack 5 — Time & Clocks (6)

PixelClock UnixTimestamp DayProgress CountdownTimer StopwatchDisplay TimezoneBar

Pack 6 — Industrial Gauges (8)

DialGauge TankLevel FlowMeter PressureGauge VoltageDisplay TemperatureBar CompassRose Speedometer

Pack 7 — Interaction (5)

CopyButton RatingDots ToggleSwitch NumericStepper SegmentedBar

Pack 8 — Orbit & Navigation (8)

OrbitSystem TargetReticle PriorityBadge RegistrationMark ArchiveTag RadarReticle CrosshairTarget MissionStatus

Theming

All components use CSS custom properties. Override on any ancestor:

:root {
  --bg:            #0d0e17;
  --bg-secondary:  #13141f;
  --fg:            #e8e8e8;
  --fg-dim:        #9a9aaa;
  --fg-dimmer:     #555566;
  --accent:        #3ecf8e;     /* primary color — change this for instant theming */
  --accent-amber:  #f5a623;
  --accent-red:    #e05252;
  --border:        rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.15);
}

Per-component color override:

<SignalMeter color="#8b5cf6" />
<DialGauge value={80} color="var(--accent-red)" />

Per-section theme:

.cyberpunk { --accent: #8b5cf6; }

Tailwind CSS

npm install @micrographics-js/tailwind
// tailwind.config.js
module.exports = {
  presets: [require("@micrographics-js/tailwind/preset")],
};

Then use: bg-mg-bg, text-mg-accent, mg-card, mg-badge, mg-glow, animate-mg-pulse, etc.

Next.js

All components include "use client" — works out of the box with App Router:

// app/page.tsx
import { SignalMeter, PixelClock } from "@micrographics-js/react";

export default function Page() {
  return <div className="bg-mg-bg p-8"><SignalMeter /><PixelClock /></div>;
}

Setup

  1. Purchase at recursivevoid.lemonsqueezy.com
  2. Install: npm install @micrographics-js/react @micrographics-js/core
  3. Add your license key in your app entry point:
// app/layout.tsx (Next.js) or src/main.tsx (Vite)
import { initLicense } from "@micrographics-js/core";
initLicense("your-license-key");

Design Principles

  • Pure SVG — pixel-crisp rendering at any size
  • CSS custom properties — no hardcoded colors, fully themeable
  • Zero runtime deps — only @micrographics-js/core (tiny shared utils)
  • Monospace-first — designed for JetBrains Mono / monospace fonts
  • Subtle animations — non-distracting micro-animations via createTicker()
  • "use client" — Next.js/RSC compatible out of the box

License

Commercial license. See LICENSE.md.

Free for personal/non-commercial use. Purchase required for production.