Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Stripe Ios | 1,810 | 443 | 20 hours ago | 137 | August 16, 2022 | 80 | mit | Swift | ||
Stripe iOS SDK | ||||||||||
Payum | 1,739 | 276 | 39 | 17 days ago | 130 | July 04, 2022 | 93 | mit | PHP | |
PHP 7+ Payment processing library. It offers everything you need to work with payments: Credit card & offsite purchasing, subscriptions, payouts etc. - provided by Forma-Pro | ||||||||||
React Native Payments | 1,539 | 23 | 4 | 18 days ago | 19 | May 25, 2021 | 156 | JavaScript | ||
Accept Payments with Apple Pay and Android Pay using the Payment Request API. | ||||||||||
Pay | 1,507 | 5 | 2 days ago | 72 | June 07, 2022 | 12 | mit | Ruby | ||
Payments for Ruby on Rails apps | ||||||||||
Stripe Payments Demo | 1,436 | a year ago | 22 | mit | JavaScript | |||||
Sample store accepting universal payments on the web with Stripe Elements, Payment Request, Apple Pay, Google Pay, Microsoft Pay, and the PaymentIntents API. 💳🌍✨ | ||||||||||
Dj Stripe | 1,381 | 69 | 2 | a day ago | 76 | July 02, 2022 | 73 | mit | Python | |
dj-stripe automatically syncs your Stripe Data to your local database as pre-implemented Django Models allowing you to use the Django ORM, in your code, to work with the data making it easier and faster. | ||||||||||
Liberapay.com | 1,377 | 4 days ago | 469 | Python | ||||||
Source code of the recurrent donations platform Liberapay | ||||||||||
Sample Vue Shop | 1,197 | 6 months ago | 21 | mit | Vue | |||||
See readme for newer repo details! A sample shop that shows how to manage payments with Vue, Stripe, and Serverless Functions | ||||||||||
Koudoku | 1,157 | 20 | 2 | 2 years ago | 20 | November 18, 2017 | 73 | mit | Ruby | |
Robust subscription support for Rails with Stripe. | ||||||||||
Stripe Android | 1,076 | 298 | 3 | a day ago | 174 | July 06, 2022 | 84 | mit | Kotlin | |
Stripe Android SDK |
Build a fullstack Stripe Payments solution with Node.js. Learn the following concepts...
Try the Live Demo (React).
Enroll in the Stripe JavaScript Course.
Clone this repo.
The /server
directory contains the Node.js API. Replace the .env
file with your API credentials.
cd server
npm install
npm run dev
Install the Stripe CLI to run webhooks in development.
stripe listen --forward-to localhost:3333/hooks
The backend API can be integrated with the following frontend frameworks.
cd react-app
npm install
npm start
Work in Progress
Work in Progress
Dockerize the server for deployment to services like Cloud Run, GKE, Elastic Beanstalk, etc.
cd server
docker build -t fireship/stripe-server .
docker run -p 3333:3333 fireship/stripe-server
Deploy to Cloud Functions to simplify your code with a tight integration to Firebase.
firebase deploy --only functions