Skip to content
This repository has been archived by the owner on Jan 22, 2021. It is now read-only.

Node.js module for testing Stripe Webhooks, no internet required

License

Notifications You must be signed in to change notification settings

lookback/stripe-mock-webhooks

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Stripe Mock Webhooks

Quickly test Stripe Webhooks against your application without hitting Stripe or requiring internet connectivity.

Features & Data

Install

$ npm install stripe-mock-webhooks --save-dev

Usage

// Require
var StripeMockWebhooks = require('stripe-mock-webhooks')

// Tell the server where it should send events
var webhooks = new StripeMockWebhooks({
  version: '2015-10-01', // Default is latest Stripe API version
  url: 'http://localhost:3001/stripe/events'
})

Send a webhook:

webhooks.trigger('invoice.created').then(function (response) {
  // success
}).catch(function (err) {
  // error
})

Or overwrite values in the response:

webhooks.trigger('invoice.created', {
  data: {
    object: {
      plan: {
        id: 'PLAN_IDENTIFIER'
      }
    }
  }
})

Additional options can be turned on / off:

webhooks.trigger('invoice.created', undefined, {
  now: false
})

Build JSON response without triggering an event:

var response = webhooks.build('invoice.created', {
  data: {
    object: {
      plan: {
        id: 'PLAN_IDENTIFIER'
      }
    }
  }
})

Supports the same arguments as webhooks.trigger

Trigger Options

  • now - Updates event created timestamp to Date.now(), defaults to true

Examples

Look in tests to see example usage.

License

MIT © Nijiko Yonskai

About

Node.js module for testing Stripe Webhooks, no internet required

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%