hapi-stripe-webhooks
v1.0.0
Published
A Hapi plugin for receiving notifications from the Stripe webhooks API.
Downloads
6
Readme
hapi-stripe-webhooks
A Hapi plugin for receiving notifications from the Stripe webhooks API.
Installation
npm install hapi-stripe-webhooks
Usage
var StripeWebhooks = require('hapi-stripe-webhooks')
server.register({
register: StripeWebhooks,
options: options,
})
options
Object
onNotification
Function
The callback to be invoked when a notification is received. The function has the signature
function (payload) {}
. Required.path
String
The path to listen on. Default
'/'
.stripeSecretKey
String
The Stripe secret key. Required.
Tests
$ npm test
License
See LICENSE.