Package Exports
- stripe
- stripe/lib/Error
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (stripe) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
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:
var stripe = require('stripe')('sk_test_...');
var customer = await stripe.customers.create(
{ email: 'customer@example.com' }
);
Or with versions of Node.js prior to v7.9:
var stripe = require('stripe')('sk_test_...');
stripe.customers.create(
{ email: 'customer@example.com' },
function(err, customer) {
err; // null if no error occurred
customer; // the created customer object
}
);
Or using ES modules, this looks more like:
import stripePackage from 'stripe';
const stripe = stripePackage('sk_test_...');
//…
Or using TypeScript:
import * as Stripe from 'stripe';
const stripe = new Stripe('sk_test_...');
//…
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:
stripe.customers.create({
email: 'foo-customer@example.com'
}).then(function(customer){
return stripe.customers.createSource(customer.id, {
source: 'tok_visa'
});
}).then(function(source) {
return stripe.charges.create({
amount: 1600,
currency: 'usd',
customer: source.customer
});
}).then(function(charge) {
// New charge created on a new customer
}).catch(function(err) {
// Deal with an error
});
Configuring Timeout
Request timeout is configurable (the default is Node's default of 120 seconds):
stripe.setTimeout(20000); // 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:
stripe.balance.retrieve({
stripe_account: 'acct_foo'
}).then(function(balance) {
// The balance object for the connected account
}).catch(function(err) {
// Error
});
Configuring a Proxy
An https-proxy-agent can be configured with
setHttpAgent
.
To use stripe behind a proxy you can pass to sdk:
if (process.env.http_proxy) {
const ProxyAgent = require('https-proxy-agent');
stripe.setHttpAgent(new ProxyAgent(process.env.http_proxy));
}
Examining Responses
Some information about the response which generated a resource is available
with the lastResponse
property:
charge.lastResponse.requestId // see: https://stripe.com/docs/api/node#request_ids
charge.lastResponse.statusCode
request
and response
events
The Stripe object emits request
and response
events. You can use them like this:
var stripe = require('stripe')('sk_test_...');
function onRequest(request) {
// Do something.
}
// Add the event handler function:
stripe.on('request', onRequest);
// Remove the event handler function:
stripe.off('request', onRequest);
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 milliseconds
}
Webhook 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:
event = stripe.webhooks.constructEvent(
webhookRawBody,
webhookStripeSignatureHeader,
webhookSecret
);
Writing a Plugin
If you're writing a plugin that uses the library, we'd appreciate it if you identified using stripe.setAppInfo()
:
stripe.setAppInfo({
name: 'MyAwesomePlugin',
version: '1.2.34', // Optional
url: 'https://myawesomeplugin.info', // Optional
});
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 stripe.customers.list()) {
doSomething(customer);
if (shouldStop()) {
break;
}
}
autoPagingEach
stripe.customers.list().autoPagingEach(function onItem(customer) {
doSomething(customer);
if (shouldStop()) {
return false;
}
}).then(function() {
console.log('Done iterating.');
}).catch(handleError);
If you need to perform asynchronous work before continuing to the next item in the list,
you may use a next()
callback, like so:
stripe.customers.list().autoPagingEach(function onItem(customer, next) {
doSomething(customer, function(result) {
if (shouldStop(result)) {
next(false); // Passing `false` breaks out of the loop.
} else {
next();
}
});
}).then(function() {
console.log('Done iterating.');
}).catch(handleError);
If you prefer callbacks to promises, you may also use a second onDone
callback:
stripe.customers.list().autoPagingEach(
function onItem(customer, next) {
/** ... */
},
function onDone(err) {
if (err) {
console.error(err);
} else {
console.all('Done iterating.');
}
}
)
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 stripe.customers.list({created: {gt: lastMonth}})
.autoPagingToArray({limit: 10000});
More Information
Development
Run all tests:
$ npm install
$ npm test
Run a single test suite:
$ npm run mocha -- test/Error.spec.js
Run 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