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/vanilla

v0.3.0

Published

52 animated micro-UI Web Components — signals, gauges, radar, terminal text, HUD elements. No framework required.

Readme

@micrographics-js/vanilla

52 animated micro-UI Web Components. No framework required. Dark industrial terminal aesthetic. Pure SVG. Works in any HTML page.

Drop <mg-signal-meter>, <mg-dial-gauge>, <mg-radar-sweep> into any page — static sites, WordPress, Rails, plain HTML.

Install

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

Or via CDN (after setting up auth):

<script type="module">
  import "@micrographics-js/vanilla";
</script>

Requires a license token. See setup below.

Quick Start

<style>
  .dashboard {
    --bg: #0d0e17; --fg: #e8e8e8; --fg-dimmer: #555566;
    --accent: #3ecf8e; --border: rgba(255,255,255,0.07);
    background: var(--bg); padding: 24px; font-family: monospace;
  }
</style>

<div class="dashboard">
  <mg-signal-meter bars="5" speed="180"></mg-signal-meter>
  <mg-pulse-tag label="ONLINE"></mg-pulse-tag>
  <mg-dial-gauge value="72" size="60"></mg-dial-gauge>
  <mg-radar-sweep size="80"></mg-radar-sweep>
  <mg-pixel-clock></mg-pixel-clock>
</div>

<script type="module">
  import "@micrographics-js/vanilla";
</script>

Custom Elements (52)

All elements use the mg- prefix:

| React/Vue/Svelte | Web Component | |-------------------|---------------| | <SignalMeter> | <mg-signal-meter> | | <PulseTag> | <mg-pulse-tag> | | <DialGauge> | <mg-dial-gauge> | | <RadarSweep> | <mg-radar-sweep> | | <PixelClock> | <mg-pixel-clock> | | <OrbitSystem> | <mg-orbit-system> | | ... | ... |

Props become HTML attributes (kebab-case):

<mg-signal-meter bars="5" speed="180" color="var(--accent)"></mg-signal-meter>
<mg-battery-meter level="0.75" charging="true"></mg-battery-meter>
<mg-target-reticle size="64" animate="true" label="TGT-01"></mg-target-reticle>

Theming

Same CSS custom properties as the framework versions:

.my-theme { --accent: #8b5cf6; }
<div class="my-theme">
  <mg-signal-meter></mg-signal-meter>  <!-- renders violet -->
</div>

Setup

  1. Purchase at recursivevoid.lemonsqueezy.com
  2. Install: npm install @micrographics-js/vanilla @micrographics-js/core
  3. Add your license key before importing components:
<script type="module">
  import { initLicense } from "@micrographics-js/core";
  initLicense("your-license-key");
  import "@micrographics-js/vanilla";
</script>

License

Commercial license. Free for personal use. Purchase required for production.