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

bini-overlay

v1.0.10

Published

Next.js-style error overlay and animated loading badge for Bini.js / Vite

Readme

bini-overlay

A Next.js-style error overlay and animated loading badge for Bini.js projects. Shows your Bini.js logo during development — animates on load and HMR updates, morphs into a clickable error pill when something goes wrong, and opens a full error panel with stack trace and code frame.


Table of Contents


Features

  • Animated badge — SVG stroke-drawing animation on page load and every HMR update
  • 🚨 Error panel — centered overlay with error type, message, code frame, and call stack
  • 🔴 Error pill — badge morphs into a red 1 Issue / 3 Issues pill — click to reopen the panel
  • 🔄 HMR integration — reacts to vite:error, vite:beforeUpdate, and vite:afterUpdate
  • 🧭 Multi-error navigation — prev/next arrows when multiple errors are queued
  • 🎨 Bini.js branding — official gradient logo and Bini.js label in the toolbar
  • 🎨 Shiki syntax highlighting — code frames highlighted via Shiki (loaded from CDN at runtime)
  • 🔒 Dev only — never appears in production builds
  • 🛡️ Suppresses default Vite overlay — replaces the built-in vite-error-overlay custom element
  • 🧹 Auto-clears — overlay automatically hides when errors are fixed (no manual refresh needed)

Installation

npm install bini-overlay --save-dev
# or
pnpm add bini-overlay -D
# or
yarn add bini-overlay -D

Usage

// vite.config.ts
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { biniOverlay } from 'bini-overlay'

export default defineConfig({
  plugins: [
    react(),
    ...biniOverlay()
  ]
})

With Options

// vite.config.ts
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { biniOverlay } from 'bini-overlay'

export default defineConfig({
  plugins: [
    react(),
    ...biniOverlay({
      shikiTheme: 'dark-plus' // optional — any valid Shiki theme
    })
  ]
})

How It Works

The badge sits in the bottom-left corner and responds to your development workflow:

States

| State | Visual | Behavior | |-------|--------|----------| | Loading | 🌀 Logo draws itself with a stroke animation | Triggers on page load and HMR updates | | Idle | 🎨 Logo sits as a filled gradient icon | Default state when no errors are present | | Error | 🔴 Red pill with 1 Issue / 3 Issues | Click to open the error panel |

Error Flow

1. Error occurs → badge morphs into red pill → overlay opens automatically
2. Navigate errors → use prev/next arrows to cycle through multiple errors
3. Fix the error → HMR updates → badge animates → overlay auto-closes
4. Back to idle → logo returns to normal state

HMR Events

| Event | Action | |-------|--------| | vite:error | Shows error pill + auto-opens panel | | vite:beforeUpdate | Clears resolved errors, shows loading animation | | vite:afterUpdate | Returns to idle, auto-closes panel if no errors remain |


Error Panel

When an error occurs, a full-screen overlay opens showing:

| Section | Description | |---------|-------------| | Error Type | Runtime Error / Parse Error / Build Error / Type Error / Unhandled Rejection | | File Info | Detected file path with line number | | Code Frame | Surrounding lines fetched from disk with highlighted error line | | Call Stack | Collapsible stack trace with internal and node_modules frames filtered | | Copy Button | Copies full error message, file, code context, and stack to clipboard | | Navigation | Prev/Next arrows when multiple errors are queued |

Code Frame Example

>>> 12: const name = user.name
    11: function Greeting() {
    13:   return <h1>Hello, {name}!</h1>

The error line is highlighted with >>> prefix and a red background.


Options

interface BiniOverlayOptions {
  /**
   * Shiki theme to use for code frame highlighting.
   * Any valid Shiki theme name accepted.
   * 
   * @see https://shiki.matsu.io/themes
   * @default 'dark-plus'
   */
  shikiTheme?: string;
}

Example Themes

  • 'dark-plus' — default, dark background with vibrant syntax
  • 'github-dark' — matches GitHub's dark mode
  • 'one-dark-pro' — popular Atom-inspired theme
  • 'material-theme' — clean Material Design colors
  • 'dracula' — dark purple-based theme
  • 'solarized-dark' — warm, muted dark theme

Requirements

| | Version | |---|---| | Node.js | >= 18.0.0 | | Vite | >= 7.0.0 |


Troubleshooting

Overlay doesn't appear

  • Ensure you're in development mode (npm run dev)
  • Check that biniOverlay() is added to the plugins array in vite.config.ts
  • Verify the plugin is installed as a dev dependency

Shiki highlighting not working

  • The overlay loads Shiki from CDN at runtime
  • An internet connection is required for first load
  • Syntax highlighting falls back to plain text if Shiki fails to load

Badge stays in loading state

  • This indicates an HMR update is in progress
  • The badge should resolve to idle or error state automatically

Overlay stays visible after fixing errors

  • The overlay auto-closes on vite:afterUpdate (fixed in v1.0.16+)
  • If you're on an older version, update to the latest

Contributing

Issues and pull requests are welcome. If you're adding a new feature, please open an issue first to discuss it.

git clone https://github.com/Binidu01/bini-overlay
cd bini-overlay
pnpm install
pnpm build

License

MIT © Binidu Ranasinghe


Related