MCPcopy Index your code
hub / github.com/braintree/braintree_node

github.com/braintree/braintree_node @3.38.0

Chat with this repo
repository ↗ · DeepWiki ↗ · release 3.38.0 ↗ · + Follow
949 symbols 2,201 edges 284 files 83 documented · 9%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Braintree Node library

The Braintree Node library provides integration access to the Braintree Gateway.

Please Note

The Payment Card Industry (PCI) Council has mandated that early versions of TLS be retired from service. All organizations that handle credit card information are required to comply with this standard. As part of this obligation, Braintree is updating its services to require TLS 1.2 for all HTTPS connections. Braintree will also require HTTP/1.1 for all connections. Please see our technical documentation for more information.

Installation

  • npm install braintree
  • var braintree = require('braintree')

Dependencies

  • node >= 10

Versions

Braintree employs a deprecation policy for our SDKs. For more information on the statuses of an SDK check our developer docs.

Major version number Status Released Deprecated Unsupported
3.x.x Active September 2020 TBA TBA
2.x.x Inactive February 2017 September 2022 September 2023

Links

Updating from an Inactive, Deprecated, or Unsupported version of this SDK? Check our Migration Guide for tips.

Quick Start

var braintree = require("braintree");

var gateway = new braintree.BraintreeGateway({
  environment: braintree.Environment.Sandbox,
  merchantId: "your_merchant_id",
  publicKey: "your_public_key",
  privateKey: "your_private_key",
});

gateway.transaction.sale(
  {
    amount: "5.00",
    paymentMethodNonce: "nonce-from-the-client",
    options: {
      submitForSettlement: true,
    },
  },
  function (err, result) {
    if (err) {
      console.error(err);
      return;
    }

    if (result.success) {
      console.log("Transaction ID: " + result.transaction.id);
    } else {
      console.error(result.message);
    }
  }
);

Promises

You can also use Promises instead of callbacks.

var braintree = require("braintree");

var gateway = new braintree.BraintreeGateway({
  environment: braintree.Environment.Sandbox,
  merchantId: "your_merchant_id",
  publicKey: "your_public_key",
  privateKey: "your_private_key",
});

gateway.transaction
  .sale({
    amount: "5.00",
    paymentMethodNonce: "nonce-from-the-client",
    options: {
      submitForSettlement: true,
    },
  })
  .then(function (result) {
    if (result.success) {
      console.log("Transaction ID: " + result.transaction.id);
    } else {
      console.error(result.message);
    }
  })
  .catch(function (err) {
    console.error(err);
  });

Almost all methods that uses a callback can alternatively use a Promise. The only exceptions are gateway.merchantAccount.all or any of the search methods because they return a stream if no callback is provided.

Documentation

Developing (Docker)

The Makefile and Dockerfile will build an image containing the dependencies and drop you to a terminal where you can run tests.

make

Tests

The unit specs can be run by anyone on any system, but the integration specs are meant to be run against a local development server of our gateway code. These integration specs are not meant for public consumption and will likely fail if run on your system. To run unit tests use rake (rake test:unit) or npm (npm test).

License

See the LICENSE file.

Core symbols most depended-on inside this repo

create
called by 594
lib/braintree/plan_gateway.js
for
called by 339
lib/braintree/validation_errors_collection.js
sale
called by 319
lib/braintree/transaction_gateway.js
on
called by 268
lib/braintree/validation_errors_collection.js
find
called by 163
lib/braintree/plan_gateway.js
parse
called by 161
lib/braintree/webhook_notification_gateway.js
is
called by 104
lib/braintree/advanced_search.js
search
called by 101
lib/braintree/dispute_gateway.js

Shape

Method 548
Class 330
Function 71

Languages

TypeScript100%

Modules by API surface

lib/braintree/advanced_search.js55 symbols
lib/braintree/webhook_testing_gateway.js46 symbols
test/spec_helper.js32 symbols
lib/braintree/transaction_gateway.js25 symbols
lib/braintree/util.js20 symbols
lib/braintree/http.js19 symbols
lib/braintree/graphql/inputs/customer_session_input.js17 symbols
lib/braintree/graphql/inputs/customer_recommendations_input.js14 symbols
lib/braintree/graphql/inputs/create_customer_session_input.js14 symbols
lib/braintree/credit_card_gateway.js14 symbols
lib/braintree/payment_method_gateway.js12 symbols
lib/braintree/oauth_gateway.js12 symbols

For agents

$ claude mcp add braintree_node \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact