Depth Series #3: Getting started with the Braintree Sandbox

Get started with Braintree using create-react-app and Express.js

Dennis O'Keeffe
4 min readOct 5, 2018

Originally Published: October 5th 2018

I’ve been looking for alternatives to Stripe more for comparisons sake to see what would be easiest to implement and more relevant to what I am trying to achieve en masse down the road.

This is a “hello world” into getting up and running with Braintree using Express on the server side and React on the frontend.

Prerequisites

If you are following along, you should sign up for a Sandbox account.

This tutorial will use create-react-app and a user contributed npm module to abstract some of the time required for setup.

Another useful link comes from their website for Node.js and JS. Although I will be deterring away from it, it is still a useful reference.

We are going to treat this project as a mono repo for now, so in the root directory we need to create a subdirectory for the frontend and a directory for the server.

Building the Express server

mkdir server
cd server
yarn init -y
yarn add express body-parser morgan cors dotenv braintree
mkdir routes
touch server.js .env .gitignore routes/index.js

.gitignore

For the sake of doing things right, let’s just quickly update our file to ignore node_modules and the .env file.

.env
node_modules/

Here we need to update our file with the sandbox tokens given to us from the Braintree sandbox environment. The keys and configuration can be found on your Braintree dashboard:

BRAINTREE_MERCHANT_ID=<use_your_merchant_id>
BRAINTREE_PUBLIC_KEY=<use_your_public_key>
BRAINTREE_PRIVATE_KEY=<use_your_private_key>

Now we can use dotenv in our app to access the variables and keep them out of our git history.

server.js

To set up the main server, update the server.js file to look like so:

This server.js file will load the routes/index.js file, which we will now update.

routes/index.js

Let’s now update our routes/index.js to take setup the gateway and setup three routes — one for a simple ping test, another for fetching a client token and a third for making a payment:

Now if we run node server.js, we should have our app up and running on port 5000!

We can run curl http://localhost:5000/braintree from another terminal to see our Braintree route is healthy response.

Now we need to set up the client side.

Building the React frontend

create-react-app clientside
cd clientside
yarn add braintree-web braintree-web-drop-in-react axios

Updating the app

Go to our App.js file and clean it out. Replace the file with the following:

This code is a variation of the intro code found on the Braintree Web Drop-in React Github intro.

If we run yarn start we should load up the React app on localhost and you should be able to see the following:

If that is the case, perfect! We are ready to roll.

Making the payment

The following comes directly from the Node.js quickstart for Braintree.

Card number: 4111 1111 1111 1111
Expiry: 09/20
CVV: 400
Postal Code: 40000

If we insert both the card number and expiry, that should be enough for us to get to the end of the road! After inserting and making the payment, our front end should look like the following:

Opening up dev tools, we can even inspect the response object we are logging to see our great success!

Bingo!

The server terminal

If we checkout the server terminal, we should be able to see how events went down thanks to Morgan doing our logging:

The image above can help us fully understand the process. When our frontend app loads, we make a GET request to fetch the token from /api/braintree/v1/getToken. This token is required for when that final payment request was made. The OPTIONS 204 request we see there secondly is a CORS preflight request made to ensure we are allowed to make the call and finally and POST 200 to /api/braintree/v1/sandbox is our success response after making the payment.

Confirmation

If we now go back to our Sandbox dashboard, we can now see the successful transaction has been recorded!

Very cool. We just went from zero to payment faster than you can say dichlorodiphenyltrichloroethane.

Next steps

What’s next? Something I like about Braintree is UI extensibility. Although we used a frontend package on this occasion, try building out your own UI for taking payments!

Whether or not you are a fan of Braintree or Stripe really is up to you and your business needs at the end of the day. It is worth looking up both the pros and cons of the developer docs and the rates to decide what is best for your specific use case (or any other payment platform for that case).

Original post: https://www.dennisokeeffe.com/blog/braintree-node-react

Git repo: https://github.com/okeeffed/hello-braintree

Depth is a series that goes into more detail for projects than it’s friendly counterpart series “Hello”.

--

--