
Product
A New Overview in our Dashboard
We redesigned Socket's first logged-in page to display rich and insightful visualizations about your repositories protected against supply chain threats.
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',
}),
],
})
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';
@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'),
}),
}),
],
})
export class AppModule {}
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 © 2019 Dylan Aspden
FAQs
Provides an injectable Stripe client to nestjs modules
The npm package nestjs-stripe receives a total of 2,586 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.
Product
We redesigned Socket's first logged-in page to display rich and insightful visualizations about your repositories protected against supply chain threats.
Product
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.
Security News
CISA denies CVE funding issues amid backlash over a new CVE foundation formed by board members, raising concerns about transparency and program governance.