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

@herb-tools/client

v0.10.1

Published

HMR client for Herb templates - connects to herb dev server and applies live DOM patches

Readme

Herb Client

Dev server client for Herb templates, connects to the Herb Dev Server and applies live DOM patches during development.

[!WARNING] The dev server and client are experimental and may not work correctly in all cases.

How It Works

The client connects to the Herb Dev Server via WebSocket and receives messages when template files change. Depending on the type of change:

  • Text and attribute changes are patched directly in the DOM without a page reload
  • Structural changes (insertions, removals, ERB changes) trigger a full page reload

Usage

The client auto-initializes when <meta name="herb-debug-mode" content="true"> is present in the page.

[!NOTE] No manual setup required when using ReActionView with debug_mode enabled.

Manual initialization

import { initHerbClient } from "@herb-tools/client"

const client = initHerbClient({
  port: 8592,
  host: "localhost",
  onPatch: (message) => console.log("Patched:", message.file),
  onReload: (message) => console.log("Reloading for:", message.file),
})

Protocol

The client communicates with the Herb Dev Server using these message types:

| Message | Direction | Description | |---------|-----------|-------------| | welcome | Server → Client | Handshake with project path | | patch | Server → Client | Text/attribute changes to apply | | reload | Server → Client | Structural change requiring reload | | error | Server → Client | Parse errors detected | | fixed | Server → Client | Parse errors resolved |