stripe
Stripe Node.js Library
The Stripe Node library provides convenient access to the Stripe API from applications written in server-side JavaScript.
Please keep in mind that this package is for use with server-side Node that uses Stripe secret keys. To maintain PCI compliance, tokenization of credit card information should always be done with Stripe.js on the client side. This package should not be used for that purpose.
Documentation
See the Node API docs.
Installation
Install the package with:
npm install stripe --save
Usage
The package needs to be configured with your account's secret key which is available in your Stripe Dashboard. Require it with the key's value:
const stripe = 'sk_test_...';const customer = await stripecustomers;
Or with versions of Node.js prior to v7.9:
var stripe = 'sk_test_...';stripecustomers;
Or using ES modules, this looks more like:
;const stripe = ;//…Usage with TypeScript
Stripe does not currently maintain typings for this package, but there are community typings available from DefinitelyTyped.
To install:
npm install --dev @types/stripeTo use:
// Note `* as` and `new Stripe` for TypeScript:;; ;Using Promises
Every method returns a chainable promise which can be used instead of a regular callback:
// Create a new customer and then a new charge for that customer:stripecustomers;Configuring Timeout
Request timeout is configurable (the default is Node's default of 120 seconds):
stripe; // in ms (this is 20 seconds)
Configuring For Connect
A per-request Stripe-Account header for use with Stripe Connect
can be added to any method:
// Retrieve the balance for a connected account:stripebalance;
Configuring a Proxy
An https-proxy-agent can be configured with
setHttpAgent.
To use stripe behind a proxy you can pass to sdk:
if processenvhttp_proxy const ProxyAgent = ; stripe;Examining Responses
Some information about the response which generated a resource is available
with the lastResponse property:
chargelastResponserequestId // see: https://stripe.com/docs/api/node#request_idschargelastResponsestatusCoderequest and response events
The Stripe object emits request and response events. You can use them like this:
const stripe = 'sk_test_...'; const onRequest = { // Do something.} // Add the event handler function:stripe; // Remove the event handler function:stripe;request object
api_version: 'latest' account: 'acct_TEST' // Only present if provided idempotency_key: 'abc123' // Only present if provided method: 'POST' path: '/v1/charges'response object
api_version: 'latest' account: 'acct_TEST' // Only present if provided idempotency_key: 'abc123' // Only present if provided method: 'POST' path: '/v1/charges' status: 402 request_id: 'req_Ghc9r26ts73DRf' elapsed: 445 // Elapsed time in millisecondsWebhook signing
Stripe can optionally sign the webhook events it sends to your endpoint, allowing you to validate that they were not sent by a third-party. You can read more about it here.
Please note that you must pass the raw request body, exactly as received from Stripe, to the constructEvent() function; this will not work with a parsed (i.e., JSON) request body.
You can find an example of how to use this with Express in the examples/webhook-signing folder, but here's what it looks like:
const event = stripewebhooks;Writing a Plugin
If you're writing a plugin that uses the library, we'd appreciate it if you identified using stripe.setAppInfo():
stripe;This information is passed along when the library makes calls to the Stripe API.
Auto-pagination
As of stripe-node 6.11.0, you may auto-paginate list methods. We provide a few different APIs for this to aid with a variety of node versions and styles.
Async iterators (for-await-of)
If you are in a Node environment that has support for async iteration, such as Node 10+ or babel, the following will auto-paginate:
for await const customer of stripecustomers ; if break; autoPagingEach
If you are in a Node environment that has support for await, such as Node 7.9 and greater,
you may pass an async function to .autoPagingEach:
await stripecustomersconsole;Equivalently, without await, you may return a Promise, which can resolve to false to break:
stripecustomers;If you prefer callbacks to promises, you may also use a next callback and a second onDone callback:
stripecustomersIf your onItem function does not accept a next callback parameter or return a Promise,
the return value is used to decide whether to continue (false breaks, anything else continues).
autoPagingToArray
This is a convenience for cases where you expect the number of items
to be relatively small; accordingly, you must pass a limit option
to prevent runaway list growth from consuming too much memory.
Returns a promise of an array of all items across pages for a list request.
const allNewCustomers = await stripecustomers ;More Information
Development
Run all tests:
$ npm install$ npm testRun a single test suite:
$ npm run mocha -- test/Error.spec.jsRun a single test (case sensitive):
$ npm run mocha -- test/Error.spec.js --grep 'Populates with type'If you wish, you may run tests using your Stripe Test API key by setting the
environment variable STRIPE_TEST_API_KEY before running the tests:
$ export STRIPE_TEST_API_KEY='sk_test....'$ npm test