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

@highcaliberai/notify

v0.1.1

Published

Tiny client for the High Caliber AI notifications hub (Extra Lovable). Connect any app in 3 lines — mute, throttle, kill-switch all controlled remotely from the hub.

Downloads

91

Readme

@highcaliberai/notify

Tiny client for the Extra Lovable notifications hub — the operations hub for the High Caliber AI network of apps.

Connect any app in 3 lines. After install, everything (mute event types, throttle, kill switch, sampling, severity overrides) is controlled remotely from the hub via project_config. You shouldn't need to ship code changes to your app to change alert behavior — just run bun update @highcaliberai/notify once in a while to pick up wire-format changes.

Install

bun add @highcaliberai/notify
# or: npm install @highcaliberai/notify

Set a project secret:

NOTIFY_KEY=lvn_xxx  # generated at https://extralovable.com/snippet

Use

import { notify } from "@highcaliberai/notify";

await notify({
  type: "signup",
  title: `${email} joined`,
  metadata: { email, plan },
});

That's it. Auto-instrumentation for window.error, unhandledrejection, and 5xx fetch responses is enabled by default in the browser.

Custom hub URL

If you self-host the hub or use a different deployment:

import { initNotify } from "@highcaliberai/notify";
initNotify({ hubUrl: "https://my-hub.example.com" });

Severity & metadata

await notify({
  type: "purchase",
  severity: "info",       // "info" | "warn" | "error" | "critical"
  title: "New purchase",
  metadata: { amount: 99, currency: "USD" },
  dedupeKey: `purchase:${orderId}`,
  ai_cost_usd: 0.0042,
});

ESM-only fallback (no install)

If you can't add an npm dep, you can pull the same client directly from the hub:

<script type="module">
  import { notify } from "https://extralovable.com/api/public/notify.js";
  await notify({ type: "test", title: "hello from CDN" });
</script>

License

MIT