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

@kalatori/webhook-simulator

v1.0.1

Published

Test your webhook endpoint against Kalatori's exact signing and delivery behavior

Downloads

44

Readme

@kalatori/webhook-simulator

Test your webhook endpoint against Kalatori's exact signing and delivery behavior.

Sends properly signed HMAC-SHA256 webhook requests via a local proxy (no CORS issues), matching Kalatori's production format. Reports what would happen in production for each response status.

Quick Start

npx @kalatori/webhook-simulator

This starts a local web UI (default: http://localhost:16726) and opens it in your browser.

Options

--port PORT   Port to listen on (default: 16726)
--self-test   Run HMAC test vectors against Rust reference implementation and exit
--help        Show usage

Features

  • HMAC-SHA256 signing matching Kalatori's exact algorithm (METHOD\nPATH\nBODY\nTIMESTAMP)
  • Server-side proxy — requests go through Node.js, not the browser, so there are no CORS restrictions
  • Event type presets — generates realistic payloads for all invoice lifecycle events (created, paid, expired, etc.)
  • Request log with expandable request/response details and production behavior notes
  • Self-test mode — validates the HMAC implementation against test vectors generated from Kalatori's Rust code
  • Zero dependencies — only uses Node.js built-in modules

Webhook Signature Format

Kalatori signs webhooks with two headers:

| Header | Description | |--------|-------------| | X-KALATORI-SIGNATURE | Hex-encoded HMAC-SHA256 of the message below | | X-KALATORI-TIMESTAMP | Unix timestamp (seconds) used in the signature |

The signed message is constructed as:

POST\n/your/webhook/path\n{"json":"body"}\n1706745600

That is: METHOD, PATH, BODY, and TIMESTAMP joined by literal newline characters.

Verifying Signatures (receiver side)

Pseudocode for your webhook handler:

import hmac, hashlib, time

MAX_SKEW_SECONDS = 300  # 5 minutes

def verify(request, secret):
    signature = request.headers["X-KALATORI-SIGNATURE"]
    timestamp = request.headers["X-KALATORI-TIMESTAMP"]

    # Reject stale or far-future timestamps to limit replay window
    if abs(time.time() - int(timestamp)) > MAX_SKEW_SECONDS:
        return False

    message = f"{request.method}\n{request.path}\n{request.body}\n{timestamp}"
    expected = hmac.new(secret.encode(), message.encode(), hashlib.sha256).hexdigest()
    return hmac.compare_digest(signature, expected)

Event Types

| Event | Statuses | |-------|----------| | created | Waiting | | updated | Waiting | | paid | Paid, OverPaid | | partially_paid | PartiallyPaid | | expired | UnpaidExpired, PartiallyPaidExpired | | admin_canceled | AdminCanceled | | customer_canceled | CustomerCanceled |

Requirements

Node.js >= 18.0.0

License

GPL-3.0