Stripe Webhook Monitor
🛑 Deprecated 🛑 - This repository is no longer being maintained.
stripe-webhook-monitor is a real-time monitor for Stripe webhooks that provides a live feeds and graph of recent events.

Stripe's platform includes webhooks that will notify you when actions take place on your account. For example, you can be notified when:
- New charges are created (
charge.created)
- Customers subscribe to a new plan (
customer.subscription.created)
- Payouts and transfers are completed (
payout.paid)
- An invoice payment failed (
invoice.payment_failed)
Webhooks are powerful: you can subscribe to these notifications and programmatically react to them in real-time.
Getting started
Requirements
You'll need to have Node v7.6+ installed, which includes support for async / await.
Set up the monitor
Clone the project repository, and create a configuration for your Stripe account:
cp config.sample.js config.js
You'll need to fill in your Stripe secret key.