stripe-shop-integration
Installation
SKILL.md
Stripe E-Commerce Shop Integration
Production-tested patterns for integrating Stripe payments into React e-commerce applications with Supabase backend. Supports both Vite and Next.js. All examples use UK GBP currency and follow enterprise security standards.
Framework Support
| Framework | API Routes | Environment Variables | Server Components |
|---|---|---|---|
| Vite + Vercel | api/*.ts (Vercel functions) |
import.meta.env.VITE_* |
No (CSR only) |
| Next.js App Router | app/api/*/route.ts |
process.env.* |
Yes (RSC) |
| Next.js Pages Router | pages/api/*.ts |
process.env.* |
No |