← Back to Browse
API Integration

WebhookForge

Production webhook handling with signature verification, retry logic, and event routing.

★★★★☆ 4.4 143 reviews
4.8k installs
v1.3.0 MIT

Install

npx skilldock install webhook-forge

About

WebhookForge handles inbound webhooks with automatic signature verification for Stripe, GitHub, Slack, and custom providers. Features event routing by type, idempotency keys, dead-letter queue for failed processing, and webhook replay for debugging.

Usage Example

const { webhooks } = require("webhook-forge");

const wh = webhooks({
  providers: {
    stripe: { secret: process.env.STRIPE_WEBHOOK_SECRET },
    github: { secret: process.env.GITHUB_WEBHOOK_SECRET }
  }
});

wh.on("stripe:payment_intent.succeeded", async (event) => {
  // Handle payment
});