stripe-webhooks

Installation
SKILL.md

Stripe Webhooks

When to Use This Skill

  • Setting up Stripe webhook handlers
  • Debugging signature verification failures
  • Understanding Stripe event types and payloads
  • Handling payment, subscription, or invoice events

Essential Code (USE THIS)

Express Webhook Handler

const express = require('express');
const stripe = require('stripe')(process.env.STRIPE_SECRET_KEY);

const app = express();
Installs
2
First Seen
Mar 1, 2026
stripe-webhooks — robinbg/webhook-skills