npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@deepkit-community/stripe

v0.0.1-alpha

Published

Interacting with the Stripe API or consuming Stripe webhooks in your Deepkit applications is now easy as pie 🥧

Downloads

4

Readme

@deepkit-community/stripe

Interacting with the Stripe API or consuming Stripe webhooks in your Deepkit applications is now easy as pie 🥧

Features

  • 💉 Injectable Stripe client for interacting with the Stripe API in Controllers and Providers

  • 🎉 Optionally exposes an API endpoint from your Deepkit application at to be used for webhook event processing from Stripe. Defaults to /stripe/webhook/ but can be easily configured

  • 🔒 Automatically validates that the event payload was actually sent from Stripe using the configured webhook signing secret

  • 🕵️ Discovers providers from your application decorated with StripeWebhookHandler and routes incoming events to them

  • 🧭 Route events to logical services easily simply by providing the Stripe webhook event type

Getting Started

Install

NPM

  • Install the package along with the stripe peer dependency npm install --save @deepkit-community/stripe stripe

YARN

  • Install the package using yarn with the stripe peer dependency yarn add @deepkit-community/stripe stripe

Import

Import and add stripeModule to the imports section of the consuming module. Your Stripe API key is required, and you can optionally include a webhook configuration if you plan on consuming Stripe webhook events inside your app.

import { stripeModule } from '@deepkit-community/stripe';

Application.create({
  imports: [
    stripeModule.configure({
      apiKey: 'test',
      webhookConfig: {
        secret: STRIPE_SECRET,
      },
    }),
    ApiConsoleModule,
  ],
});

Configuration

Configuration can be provided inline as seen in the example above or using ENV variables with a prefix of stripe.

Injectable Providers

The module exposes an injectable Stripe instance that is pre-configured with your API Key based on module configuration. To inject it, use the 'Stripe' injection token:

@injectable()
class MyService {
  constructor(@inject('Stripe') private readonly stripe: Stripe) {}
}

Consuming Webhooks

Included API Endpoint

This module will automatically add a new API endpoint to your Deepkit application for processing webhooks. By default, the route for this endpoint will be stripe/webhook but you can modify this to use a different prefix using the controllerRoutePrefix and controllerRoute configuration when importing the module.

Decorate Methods For Processing Webhook Events

Exposing provider/service methods to be used for processing Stripe events is easy! Simply use the provided decorator and indicate the event type that the handler should receive.

Review the Stripe documentation for more information about the types of events available.

@injectable()
class PaymentCreatedService {
  @StripeWebhookHandler('payment_intent.created')
  handlePaymentIntentCreated(evt: StripeEvent) {
    // execute your custom business logic
  }
}

Configure Webhooks in the Stripe Dashboard

Follow the instructions from the Stripe Documentation for remaining integration steps such as testing your integration with the CLI before you go live and properly configuring the endpoint from the Stripe dashboard so that the correct events are sent to your Deepkit app.

License

MIT License