
Security News
Next.js Patches Critical Middleware Vulnerability (CVE-2025-29927)
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
nestjs-stripe
Advanced tools
Injectable Stripe client for your nestjs projects
nestjs-stripe
implements a module, StripeModule
, which when imported into
your nestjs project provides a Stripe client to any class that injects it. This
lets Stripe be worked into your dependency injection workflow without having to
do any extra work outside of the initial setup.
npm install --save nestjs-stripe
The simplest way to use nestjs-stripe
is to use StripeModule.forRoot
import { Module } from '@nestjs-common';
import { StripeModule } from 'nestjs-stripe';
@Module({
imports: [
StripeModule.forRoot({
apiKey: 'my_secret_key',
apiVersion: '2020-08-27',
}),
],
})
export class AppModule {}
You can then inject the Stripe client into any of your injectables by using a custom decorator
import { Injectable } from '@nestjs/common';
import { InjectStripe } from 'nestjs-stripe';
import Stripe from 'stripe';
@Injectable()
export class AppService {
public constructor(@InjectStripe() private readonly stripeClient: Stripe) {}
}
Asynchronous setup is also supported
import { Module } from '@nestjs-common';
import { StripeModule } from 'nestjs-stripe';
@Module({
imports: [
StripeModule.forRootAsync({
inject: [ConfigService],
useFactory: (configService: ConfigService) => ({
apiKey: configService.get('stripe_key'),
apiVersion: '2020-08-27',
}),
}),
],
})
export class AppModule {}
Read up on the stripe-node
caveats
here. Due to the
way stripe-node
works you can only use the latest version of the Stripe API
that was published at the time the module version was published. If you wish to
use an older version of the Stripe API, follow the steps in the above link.
Because of this, the apiVersion
field is now required along with the apiKey
field.
In order to run the example run the following commands in your terminal. The
expected output of the example is to show that the Stripe client was
successfully injected into the AppService
.
cd example
yarn install
yarn start
I would greatly appreciate any contributions to make this project better. Please make sure to follow the below guidelines before getting your hands dirty.
git checkout -b my-branch
)Distributed under the MIT License. See LICENSE
for more information.
Copyright © 2021 Dylan Aspden
FAQs
Provides an injectable Stripe client to nestjs modules
The npm package nestjs-stripe receives a total of 4,075 weekly downloads. As such, nestjs-stripe popularity was classified as popular.
We found that nestjs-stripe demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
Security News
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.