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

@agstack/notification-webhook

v0.1.0

Published

Enterprise-grade webhook notification plugin for AGStack — filter, rate-limit, retry, format, and deliver notifications asynchronously

Readme

@agstack/notification-webhook

Enterprise-grade webhook notification plugin for AGStack

A reference implementation for every AGStack notification plugin. Delivers notifications asynchronously through the AGStack Runtime Worker Pool without ever blocking HTTP requests.

Features

  • Async Pipeline — Runtime → Queue → Worker → Filter → Format → Retry → Delivery
  • Filtering — Severity, environment, hostname, tags, route, custom expressions
  • Rate Limiting — Per-minute, per-hour, burst, cooldown, deduplication, aggregation
  • Retry Queue — Exponential backoff, jitter, max retries, dead letter queue
  • Payload Formats — JSON, Compact, Minimal, Detailed, Custom Templates
  • Authentication — Bearer tokens, API keys, Basic auth, custom headers
  • Security — HTTPS by default, certificate validation, HMAC signing, secret masking
  • Metrics — Delivery latency, success rate, failure tracking, queue depth
  • Health Check — Plugin status, pending queue, retry queue, failure reasons

Installation

npm install @agstack/notification-webhook

Quick Start

import { NotificationWebhookPlugin, DEFAULTS, validateConfig } from "@agstack/notification-webhook";
import { createRuntime } from "@agstack/logger";

const runtime = createRuntime({
  plugins: [
    () => {
      const plugin = new NotificationWebhookPlugin();
      runtime.registerPlugin("notification-webhook", plugin, {
        options: validateConfig({
          url: "https://hooks.example.com/alerts",
          method: "POST",
          format: "compact",
          auth: { type: "bearer", bearerToken: process.env.WEBHOOK_SECRET },
          filter: { minSeverity: "warning" },
          retry: { maxRetries: 3 },
        }),
      });
      return plugin;
    },
  ],
});

await runtime.start();

// Notifications are sent automatically by the Runtime
// when security threats, errors, or alerts occur

Manual Notification

const plugin = runtime.getPlugin("notification-webhook");
await plugin.send({
  channel: "security",
  title: "SQL Injection Detected",
  message: "Blocked injection attempt from IP 10.0.0.1",
  severity: "critical",
  transactionId: "tx-123",
  metadata: {
    source: "express",
    route: "/api/users",
    ip: "10.0.0.1",
  },
});

Configuration

| Option | Type | Default | Description | |--------|------|---------|-------------| | url | string | (required) | Webhook endpoint URL | | method | POST \| PUT \| PATCH | "POST" | HTTP method | | timeoutMs | number | 10000 | Request timeout | | format | PayloadFormat | "json" | Payload format | | auth.type | AuthType | "none" | Authentication type | | retry.maxRetries | number | 3 | Maximum retry attempts | | rateLimit.maxPerMinute | number | 60 | Max notifications/minute | | rateLimit.maxPerHour | number | 1000 | Max notifications/hour | | filter.minSeverity | SeverityLevel | "info" | Minimum severity level |

Architecture

Runtime Event → Notification Plugin
                     ↓
                Filter Engine
                     ↓ (if passed)
                Rate Limiter
                     ↓ (if allowed)
                Payload Formatter
                     ↓
                Webhook Client
                     ↓
            ┌─── Success ───→ Metrics
            │
            └─── Failure ───→ Retry Queue
                                  ↓
                     Exponential Backoff
                                  ↓
                     Delivery Attempt
                                  ↓
                     Max Retries → DLQ

API

NotificationWebhookPlugin

| Method | Description | |--------|-------------| | send(notification) | Send a single notification asynchronously | | sendBatch(notifications) | Send multiple notifications | | health() | Get plugin health and metrics |

License

MIT