All Projects → braintree → Braintree_express_example

braintree / Braintree_express_example

Licence: mit
An example Braintree integration for Express

Labels

Braintree Express Example

Build Status

An example Braintree integration for Node in the Express framework.

Setup Instructions

  1. Install packages:

    npm install
    
  2. Copy the contents of example.env into a new file named .env and fill in your Braintree API credentials. Credentials can be found by navigating to Account > My User > View Authorizations in the Braintree Control Panel. Full instructions can be found on our support site.

  3. Start the server:

    npm start
    

    By default, this runs the app on port 3000. You can configure the port by setting the environmental variable PORT.

Deploying to Heroku

You can deploy this app directly to Heroku to see the app live. Skip the setup instructions above and click the button below. This will walk you through getting this app up and running on Heroku in minutes.

Deploy

Running tests

To run unit tests, use npm run test:unit. These do not require a server and do not make API calls.

To run all tests, run npm test. This requires the server be up (in a separate shell using npm run dev or npm start) to make the relevant API calls to Braintree. npm test requires that your sandbox Braintree credentials be set up as detailed above.

Testing Transactions

Sandbox transactions must be made with sample credit card numbers, and the response of a Transaction.sale() call is dependent on the amount of the transaction.

Help

Disclaimer

This code is provided as is and is only intended to be used for illustration purposes. This code is not production-ready and is not meant to be used in a production environment. This repository is to be used as a tool to help merchants learn how to integrate with Braintree. Any use of this repository or any of its code in a production environment is highly discouraged.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].