Comment by duckerduck
Comment by duckerduck a day ago
I’m working on “Stripe Integration as a Library.” It seems that whenever someone uses Stripe, for example for subscriptions, they go through the same few steps: creating a database table, setting up webhooks, and implementing the events they care about. The challenge of course is that everyone uses a different stack.
I’m building this using our framework for stack-agnostic JS/TS libraries. On the database side, we currently support Drizzle and Kysely, with Prisma support coming soon.
https://fragno.dev/docs/our-fragments/stripe/quickstart
Inspired by the Stripe integration built for better-auth.
Ironically stripe began as "payment integration as a library"