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

@hyperyond/vite-plugin

v0.1.7

Published

Vite plugin that injects the Hover chat widget into your dev server, so AI can drive your real Chrome.

Readme

@hyperyond/vite-plugin

Vite plugin that injects the Hover chat widget into your dev server. The developer types a natural-language instruction; an agent on the user's PATH (claude, today) drives their real Chrome via CDP + Playwright MCP; verified sessions crystallize into __vibe_tests__/<slug>.spec.ts files for plain Playwright CI runs.

Part of the Hover monorepo. See the top-level README for the full pitch and architecture.

Install

pnpm add -D @hyperyond/vite-plugin

No .npmrc, no auth tokens — @hyperyond/* is public on npmjs.com.

Use

// vite.config.ts
import { defineConfig } from 'vite';
import { hover } from '@hyperyond/vite-plugin';

export default defineConfig({
  plugins: [hover()],
});

Run your dev server:

pnpm dev

Open your dev URL in any Chrome — the ✨ launcher in the bottom-right colour-codes what (if anything) it needs:

  • Blue — page is already in a debug Chrome. Click and chat.
  • Amber — no debug Chrome detected. Click → widget launches one (isolated profile under <tmpdir>/hover-chrome, navigated to your dev URL) → prompts you to switch over.
  • Gray — a debug Chrome is running but in a different Chrome process. Click → service brings the right tab to the front. The widget in this window stays disabled — use the one in the debug Chrome.

Pass autoLaunchChrome: true to skip the colour dance and pre-warm Chrome at vite dev instead (matches the smoke flow). Pass false (the default) to let the widget drive it on demand. Either way, pnpm exec hover-chrome (or npx hover-chrome) is available as an escape hatch.

Options

hover({
  port?: 51789,                // local WebSocket port; auto-bumps if taken
  enabled?: true,              // false to disable (default: only in dev mode)
  chromeDebugPort?: 9222,
  autoLaunchChrome?: false,    // true to launch Chrome at vite dev (widget drives it by default)
  agentId?: 'claude',          // matches @hyperyond/core's agent registry
  model?: 'sonnet',            // 'opus' costs ~5x; sonnet is fine for browser driving
  maxBudgetUsd?: undefined,    // hard $ ceiling per command; default no cap (use Stop in the widget)
});

What it does

  • apply: 'serve' — no-op in production builds.
  • transformIndexHtml (order: 'post') injects a single <script type="module"> with the widget source. The widget self-isolates via Shadow DOM, marked data-hover="true" so Playwright runs filter it out.
  • configureServer boots a long-running @hyperyond/core WebSocket service on 127.0.0.1 and tears it down in closeBundle.
  • Port auto-bump (51789 → 51798) so multiple example apps can run concurrently, each with its own service.

Sandbox

The agent the plugin spawns is locked down to one capability: drive the browser. Allowed tools = mcp__playwright + Skill (so saved skills can be invoked). Everything else — Bash, Edit, Write, Read, WebFetch, Task, EnterWorktree, CronCreate, … — is explicitly denied. --max-budget-usd 0.5 is a hard ceiling per run.

License

Apache-2.0 © Hyperyond