DEV Community

Cover image for Have you used Stripe to collect payments?
Madza
Madza

Posted on

Have you used Stripe to collect payments?

With Stripe businesses of all sizes - from startups to large enterprises can accept payments, send payouts, and manage their businesses online.

It's easy to set-up and maintain. Thanks to their API, developers can integrate custom payment solutions in their apps.

Have you ever used it for any of your projects?
What's your experience and would you recommend it to others?

Top comments (10)

Collapse
 
bobbyiliev profile image
Bobby Iliev

Yes, used it for a few Laravel projects, really grateful for the Laravel Cashier package which makes things a lot easier.

I would also suggest trying out Paddle as an alternative.

Collapse
 
eric23 profile image
Eric

The nice thing about Paddle and FastSpring is that they take care of all the tax stuff.

Collapse
 
stradivario profile image
Kristiqn Tachev

In the first time Paddle looks good when you look at their documentation it is lacking. I also can see that they are using old Callback method for their API so i am expecting too much hassle inside their code internally.

Also i really don't want to make every method coming from their API wrapped inside Promise

new Promise((resolve, reject) => {
   Paddle.method((e, data) => {
     if(e){
       return reject(e)
     } else {
      return resolve(data)
     }
   })
})
Enter fullscreen mode Exit fullscreen mode

Does that looks good to you guys ? For a payment platform ?

Collapse
 
madza profile image
Madza

I should check them out, thanks for recommending πŸ˜‰

Collapse
 
madza profile image
Madza

Thanks a lot for the input πŸ™β€

Collapse
 
fedeagripa profile image
fedeagripa • Edited

Take a look at an old post I have with Rails + React. If by any chance you want an updated version for new hook usages just let me know :)
dev.to/fedeagripa/online-payments-...

Collapse
 
myogeshchavan97 profile image
Yogesh Chavan

Yes, I have used in the food ordering app created in Mastering Redux Course

Collapse
 
madza profile image
Madza

Thanks for the share πŸ™πŸ™

Collapse
 
johnmelodyme profile image
John Melody Me

Yes. And it is recommended! Whatever you use , don't use ipay88 . Refer johnmelodyme.wordpress.com/2021/09...

Collapse
 
madza profile image
Madza

Thanks for the share πŸ™β€