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();
Related skills

More from pedronauck/skills

Installs
80
GitHub Stars
355
First Seen
Mar 18, 2026