1.0.0 • Published 9 years ago

hapi-stripe-webhooks v1.0.0

Weekly downloads
4
License
-
Repository
-
Last release
9 years ago

hapi-stripe-webhooks

Build Status Coverage Status

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.