A Feathers service for Stripe
npm install stripe@^13 feathers-stripe --save
Please refer to the Stripe API Docs and the stripe-node docs for options that can be passed. Feathers service methods map to the following Stripe methods:
- Feathers
find
-> Stripelist
- Feathers
get
-> Striperetrieve
- Feathers
create
-> Stripecreate
- Feathers
update
-> Stripeupdate
- Feathers
patch
-> Stripeupdate
(in most cases). Some special cases include paying an invoice or an order when you pass{pay: true}
as part ofcontext.data
. See each service's code for more info. - Feathers
remove
-> Stripedel
(in most cases). Some special cases include transfers and charges create a reversal/refund. See each service's code for more info.
If a method is not supported by Stripe for a given resource it is not supported here as well.
Use params.stripe
to pass additional parameters like expand
, idempotencyKey
, apiVersion
, etc to the underlying Stripe methods.
Many methods support/require passing special properties to context.data
and context.query
to better inform the underlying stripe methods. You are encouraged to read the source code for each service to better understand their usage. For example, the Card
service requires a customer
to be provided.
const card = await app.service("stripe/cards").create({
customer: "cust_123",
source: { token: "tok_123" }
});
// stripe.customers.createSource(customer, { source: { ... } });
const card = await app.service("stripe/cards").get("card_123", {
query: { customer: "cust_123" }
});
// stripe.customers.retrieveSource(query.customer, id);
The following services are supported and map to the appropriate Stripe resource:
AccountLinks
Account
ApplicationFeeRefund
Balance
BankAccount
Card
Charge
Coupon
Customer
Dispute
Event
ExternalAccount
InvoiceItem
Invoice
PaymentIntent
PaymentMethod
Payout
Plan
Price
Product
Recipient
Refund
SetupIntent
Source
SubscriptionItem
Subscription
Token
Transaction
TransferReversal
Transfer
Webhook
This is pretty important! Since this connects to your Stripe account you want to make sure that you don't expose these endpoints via your app unless the user has the appropriate permissions. You can prevent any external access by doing this:
import { Forbidden } from "@feathersjs/errors";
app.service("stripe/cards").hooks({
before: {
all: [
(context) => {
if (context.params.provider) {
throw new Forbidden("You are not allowed to access this");
}
}
]
}
});
This is pretty important! You are also encouraged to use some kind of rate limiter. Checkout the Stripe Rate Limit Docs
import Bottleneck from 'bottleneck';
// Configure 100 reqs/second for production, 25 for test mode
const readLimiter = new Bottleneck({ minTime: 10 });
const writeLimiter = new Bottleneck({ minTime: 10 });
// const readLimiter = new Bottleneck({ minTime: 40 });
// const writeLimiter = new Bottleneck({ minTime: 40 });
const rateLimitHook = async (context) => {
const limiter = context.method === 'find' || context.method === 'get'
? readLimiter
: writeLimiter;
context.result = await limiter.schedule(() => {
// Use an underscored method to bypass hooks and not end
// up in an infinite loop hitting this hook again.
if (context.method === 'find') {
return context.service._find(context.params);
}
if (context.method === 'get') {
return context.service._get(context.id, context.params);
}
if (context.method === 'create') {
return context.service._create(context.data, context.params);
}
if (context.method === 'update') {
return context.service._update(context.id, context.data, context.params);
}
if (context.method === 'patch') {
return context.service._patch(context.id, context.data, context.params);
}
if (context.method === 'remove') {
return context.service._remove(context.id context.params);
}
});
return context;
}
// The rateLimitHook should be the last before hook for each method.
app.service('stripe/cards').hooks({
before: {
find: [ ...hooks, rateLimitHook],
get: [ ...hooks, rateLimitHook],
create: [ ...hooks, rateLimitHook],
update: [ ...hooks, rateLimitHook],
patch: [ ...hooks, rateLimitHook],
remove: [ ...hooks, rateLimitHook],
}
});
Here's an example of a Feathers server that uses feathers-authentication
for local auth. It includes a users
service that uses feathers-mongoose
. Note that it does NOT implement any authorization.
import { feathers } from "@feathersjs/feathers";
import express from "@feathersjs/express";
import socketio from "@feathersjs/socketio";
import Stripe from 'stripe';
import { ChargeService } from "feathers-stripe";
// Initialize the application
const app = feathers()
.configure(express.rest())
.configure(socketio())
// Needed for parsing bodies (login)
.use(express.json())
.use(express.urlencoded({ extended: true }))
// A simple Message service that we can used for testing
.use(
"/stripe/charges",
new ChargeService({ stripe: new Stripe('sk_test_...') })
)
.use("/", feathers.static(__dirname + "/public"))
.use(express.errorHandler({ html: false }));
const validateCharge = () => (hook) => {
console.log("Validating charge code goes here");
};
const chargeService = app.service("stripe/charges");
chargeService.hooks({
before: {
create: [validateCharge()]
}
});
const charge = {
amount: 400,
currency: "cad",
source: "tok_87rau6axWXeqLq", // obtained with Stripe.js
description: "Charge for [email protected]"
};
chargeService
.create(charge)
.then((result) => {
console.log("Charge created", result);
})
.catch((error) => {
console.log("Error creating charge", error);
});
app.listen(3030);
console.log("Feathers authentication app started on 127.0.0.1:3030");
You can setup a webhook using the helper function setupWebhook
in your service
export default function (app) {
setupWebhook(app, "/stripe-webhook", {
endpointSecret: "whsec_ededqwdwqdqwdqwd778qwdwqdq",
stripe: new Stripe("sk_test_..."),
handlers: {
customer: {
subscription: {
async created({ object, event, params, app }) {
return {};
}
}
}
}
});
// Get our initialized service so that we can register hooks
const service = app.service("stripe-webhook");
service.hooks(hooks);
}
Licensed under the MIT license.