Processing credit cards in React/Node using only open source tech

If you go out and look for how to process credit cards online, you will continuously get sent towards Paypal or Stripe (which are great options!). These have great features, including nice client UIs, but they don't always fit the problem domain.

I need to accept credit card payments to replace in-person payments for a business, which means no extra fees outside of what credit cards already charge. This is for both Canada and the USA.

Is there an established "best pick" for open source frameworks for handling credit card payments in Node and React?


To be clear, I am showing you one merchant that you can use. Whichever merchant your client is using now to take credit card payments will most likely have a REST API to use.

Most merchant service will have some sort of an API you can use. Since we do not know which merchant you are planning on using I will show you a popular one.

I have used authorize.net a lot in my career. They have a REST API you can consume to handle payments for your clients. The API has a SDK you can download for whichever language you want to use.

The developer portal is here.

You can see popular language examples here.

When you go to that last link click on code examples and pick the language you want to see.

在这里输入图像描述

Here is the SDK repo for Node.js.

Find more SDKs on git and use them in your app!

Let me know if you have anymore questions.

链接地址: http://www.djcxy.com/p/70754.html

上一篇: 按多个属性对列表进行排序?

下一篇: 仅使用开源技术在React / Node中处理信用卡