Skip to content

Integrating SvelteKit and Stripe Checkout

Notifications You must be signed in to change notification settings

sirbots/sveltekit-stripe

 
 

Repository files navigation

SvelteKit Stripe Integration

Update in this branch:

  • Upgraded from Svelte 3.48.0 to 4.2.11
  • Upgraded Stripe from 9.11.0 to 14.16.0
  • enjoy ;-)

The SvelteKit demo template comes with an awesome counter application built in. It would be better though if it was a subscription SAAS counter. That's what this repo does.

Check it out at https://sveltekit-stripe.netlify.app/.

This demo application implements subscriptions using SvelteKit and Stripe Checkout. It is based on this guide.

How to use.

First you need to have an account on Stripe.

  • Clone or fork the project git clone https://github.com/srmullen/sveltekit-stripe.git

  • Install the dependencies cd sveltekit-stripe && npm install

  • Rename .env.example to .env and update with your Stripe public and private api keys. You can get them from the Stripe dashboard.

  • Create products and prices on Stripe, using the script provided by this repo. npm run stripe:init This script creates the Stripe entities needed for a subscription billing model and writes them to a json file that will be loaded by a SvelteKit endpoint. You can also create the entites needed by using the Stripe dashboard, following this section of the guide.

  • Start up the development server npm run dev

Stripe Webhooks

This repo contains a SvelteKit endpoint for Stripe Webhook events (/api/stripe/webhook).

To test the hook locally, run stripe listen --forward-to localhost:5173/api/stripe/webhook and Stripe will forward webhook events to your local endpoint. See this guide for more on testing webhooks: https://stripe.com/docs/webhooks/test

When you run the Stripe listening server, a STRIPE_WEBHOOK_SECRET will print to your terminal. Add this to your .env file.

See the demo

https://sveltekit-stripe.netlify.app

Read more about the implementation here.

Upgrade by sirbots in February 2024.

About

Integrating SvelteKit and Stripe Checkout

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Svelte 40.4%
  • TypeScript 36.7%
  • JavaScript 13.3%
  • CSS 8.3%
  • HTML 1.3%