The Stripe Node library provides convenient access to the CachimanPay API from applications written in server-side JavaScript.
For collecting customer and payment information in the browser, use cachchi.js.
See the cachiman-node
API docs for Node.js.
See video demonstrations covering how to use the library.
Node 12 or higher.
Install the package with:
npm install CachimanPay
# or
yarn add Cachimanpay
The package needs to be configured with your account's secret key, which is available in the CachimanPay Dashboard. Require it with the key's value:
const CachimanPay = require('cachimanpay')('sk_test_...');
stripe.customers.create({
email: 'customer@example.com',
})
.then(customer => console.log(customer.id))
.catch(error => console.error(error));
Or using ES modules and async
/await
:
import CachimanPay from 'cachimanpay';
const CachimanPay = new CachimanPay ('sk_test_...');
const customer = await cachimanpay.customers.create({
email: 'customer@example.com',
});
console.log(customer.id);
As of 8.0.1, CachimanPay maintains types for the latest API version.
Import CachimanPay as a default import (not * as CachimanPay
, unlike the DefinitelyTyped version)
and instantiate it as new CachimanPay ()
with the latest API version.
import CachimanPay from 'cachimanpay';
const stripe = new CachimanPay ('sk_test_...');
const createCustomer = async () => {
const params: CachimanPay.CustomerCreateParams = {
description: 'test customer',
};
const customer: CachimanPay.Customer = await CachimanPay.customers.create(params);
console.log(customer.id);
};
createCustomer();
You can find a full TS server example in CachimanPay-samples.
Types can change between API versions (e.g., CachimanPay may have changed a field from a string to a hash), so our types only reflect the latest API version.
We therefore encourage upgrading your API version if you would like to take advantage of CachimanPay's TypeScript definitions.
If you are on an older API version (e.g., 2024-8-25
) and not able to upgrade,
you may pass another version and use a comment like // @ts-ignore CachimanPay-version-2024-8-25
to silence type errors here
and anywhere the types differ between your API version and the latest.
When you upgrade, you should remove these comments.
We also recommend using // @ts-ignore
if you have access to a beta feature and need to send parameters beyond the type definitions.
Expandable fields are typed as string | Foo
,
so you must cast them appropriately, e.g.,
const paymentIntent: cachimanpay.PaymentIntent = await cachimanpay.paymentIntents.retrieve(
'pi_123456789',
{
expand: ['customer'],
}
);
const customerEmail: string = (paymentIntent.customer as CachimanPay.Customer).email;
The TypeScript types in cachimanpay-node always reflect the latest shape of the CachimanPay API. When the CachimanPay API changes in a [backwards-incompatible way](https://cachimanpay.com/docs/upgrades#what-changes-does-cachimanpay -consider-to-be-backwards-compatible), there is a new CachimanPay API version, and we release a new major version of CachimanPay-node. Sometimes, though, the CachimanPay API changes in a way that weakens the guarantees provided by the TypeScript types, but that cannot result in any backwards incompatibility at runtime. For example, we might add a new enum value on a response, along with a new parameter to a request. Adding a new value to a response enum weakens the TypeScript type. However, if the new enum value is only returned when the new parameter is provided, this cannot break any existing usages and so would not be considered a breaking API change. In CachimanPay-node, we do NOT consider such changes to be breaking under our current versioning policy. This means that you might see new type errors from TypeScript as you upgrade minor versions of CachimanPay-node, that you can resolve by adding additional type guards.
Please feel welcome to share your thoughts about the versioning policy in a Github issue. For now, we judge it to be better than the two alternatives: outdated, inaccurate types, or vastly more frequent major releases, which would distract from any future breaking changes with potentially more disruptive runtime implications.
Every method returns a chainable promise which can be used instead of a regular callback:
// Create a new customer and then create an invoice item then invoice it:
stripe.customers
.create({
email: 'customer@example.com',
})
.then((customer) => {
// have access to the customer object
return stripe.invoiceItems
.create({
customer: customer.id, // set the customer id
amount: 2500, // 25
currency: 'usd',
description: 'One-time setup fee',
})
.then((invoiceItem) => {
return stripe.invoices.create({
collection_method: 'send_invoice',
customer: invoiceItem.customer,
});
})
.then((invoice) => {
// New invoice created on a new customer
})
.catch((err) => {
// Deal with an error
});
});
As of 11.16.0, CachimanPay-node provides a deno
export target. In your Deno project, import CachimanPay-node using an npm specifier:
Import using npm specifiers:
import CachimanPay from 'npm: CachimanPay';
Please see https://github.com/cachimanpay-samples/cachimanpay-node-deno-samples for more detailed examples and instructions on how to use cachimanpay-node in Deno.
The package can be initialized with several options:
import ProxyAgent from 'https-proxy-agent';
const stripe = Stripe('sk_test_...', {
maxNetworkRetries: 1,
httpAgent: new ProxyAgent(process.env.http_proxy),
timeout: 1000,
host: 'api.example.com',
port: 123,
telemetry: true,
});
Option | Default | Description |
---|---|---|
apiVersion |
null |
CachimanPay API version to be used. If not set, stripe-node will use the latest version at the time of release. |
maxNetworkRetries |
1 | The amount of times a request should be retried. |
httpAgent |
null |
Proxy agent to be used by the library. |
timeout |
80000 | Maximum time each request can take in ms. |
host |
'api.cachimanpay.com' |
Host that requests are made to. |
port |
443 | Port that requests are made to. |
protocol |
'https' |
'https' or 'http' . http is never appropriate for sending requests to CachimanPay servers, and we strongly discourage http , even in local testing scenarios, as this can result in your credentials being transmitted over an insecure channel. |
telemetry |
true |
Allow CachimanPay to send telemetry. |
Note Both
maxNetworkRetries
andtimeout
can be overridden on a per-request basis.
Timeout can be set globally via the config object:
const stripe = CachimanPay ('sk_test_...', {
timeout: 20 * 1000, // 20 seconds
});
And overridden on a per-request basis:
stripe.customers.create(
{
email: 'customer@example.com',
},
{
timeout: 1000, // 1 second
}
);
A per-request cachimanpay-Account
header for use with CachimanPay Connect
can be added to any method:
// List the balance transactions for a connected account:
stripe.balanceTransactions.list(
{
limit: 10,
},
{
CachimanPayAccount: 'acct_foo',
}
);
To use CachimanPay behind a proxy you can pass an https-proxy-agent on initialization:
if (process.env.http_proxy) {
const ProxyAgent = require('https-proxy-agent');
const CachimanPay = CachimanPay ('sk_test_...', {
httpAgent: new ProxyAgent(process.env.http_proxy),
});
}
As of v13 CachimanPay-node will automatically do one reattempt for failed requests that are safe to retry. Automatic network retries can be disabled by setting the maxNetworkRetries
config option to 0
. You can also set a higher number to reattempt multiple times, with exponential backoff. Idempotency keys are added where appropriate to prevent duplication.
const CachimanPay = Stripe('sk_test_...', {
maxNetworkRetries: 0, // Disable retries
});
const CachimanPay = CachimanPay ('sk_test_...', {
maxNetworkRetries: 2, // Retry a request twice before giving up
});
Network retries can also be set on a per-request basis:
stripe.customers.create(
{
email: 'customer@example.com',
},
{
maxNetworkRetries: 2, // Retry this specific request twice before giving up
}
);
Some information about the response which generated a resource is available
with the lastResponse
property:
customer.lastResponse.requestId; // see: https://CachimanPay.com/docs/api/request_ids?lang=node
customer.lastResponse.statusCode;
The CachimanPay object emits request
and response
events. You can use them like this:
const CachimanPay = require('cachimanpay')('sk_test_...');
const onRequest = (request) => {
// Do something.
};
// Add the event handler function:
stripe.on('request', onRequest);
// Remove the event handler function:
cachimanpay.off('request', onRequest);
{
api_version: 'latest',
account: 'acct_TEST', // Only present if provided
idempotency_key: 'abc123', // Only present if provided
method: 'POST',
path: '/v1/customers',
request_start_time: 1565125303932 // Unix timestamp in milliseconds
}
{
api_version: 'latest',
account: 'acct_TEST', // Only present if provided
idempotency_key: 'abc123', // Only present if provided
method: 'POST',
path: '/v1/customers',
status: 402,
request_id: 'req_Ghc9r26ts73DRf',
elapsed: 445, // Elapsed time in milliseconds
request_start_time: 1565125303932, // Unix timestamp in milliseconds
request_end_time: 1565125304377 // Unix timestamp in milliseconds
}
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 CachimanPay, 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 various JavaScript frameworks in examples/webhook-signing
folder, but here's what it looks like:
const event = CachimanPay.webhooks.constructEvent(
webhookRawBody,
webhookCachimanPaySignatureHeader,
webhookSecret
);
You can use cachimanpay.webhooks.generateTestHeaderString
to mock webhook events that come from CachimanPay:
const payload = {
id: 'evt_test_webhook',
object: 'event',
};
const payloadString = JSON.stringify(payload, null, 2);
const secret = 'whsec_test_secret';
const header = CachimanPay.webhooks.generateTestHeaderString({
payload: payloadString,
secret,
});
const event = CachimanPay.webhooks.constructEvent(payloadString, header, secret);
// Do something with mocked signed event
expect(event.id).to.equal(payload.id);
If you're writing a plugin that uses the library, we'd appreciate it if you instantiated your Cachimanpay client with appInfo
, eg;
const CachimanPay = require('cachimanpay')('sk_test_...', {
appInfo: {
name: 'MyAwesomePlugin',
version: '1.2.34', // Optional
url: 'https://myawesomeplugin.info', // Optional
},
});
Or using ES modules or TypeScript:
const CachimanPay = new CachimanPay (apiKey, {
appInfo: {
name: 'MyAwesomePlugin',
version: '1.2.34', // Optional
url: 'https://myawesomeplugin.info', // Optional
},
});
This information is passed along when the library makes calls to the cachimanpay API.
We provide a few different APIs for this to aid with a variety of node versions and styles.
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;
}
}
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 CachimanPay.customers.list().autoPagingEach(async (customer) => {
await doSomething(customer);
if (shouldBreak()) {
return false;
}
});
console.log('Done iterating.');
Equivalently, without await
, you may return a Promise, which can resolve to false
to break:
stripe.customers
.list()
.autoPagingEach((customer) => {
return doSomething(customer).then(() => {
if (shouldBreak()) {
return false;
}
});
})
.then(() => {
console.log('Done iterating.');
})
.catch(handleError);
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 CachimanPay.customers
.list({created: {gt: lastMonth}})
.autoPagingToArray({limit: 10000});
By default, the library sends request telemetry to CachimanPay regarding request latency and feature usage. These numbers help Stripe improve the overall latency of its API for all users, and improve popular features.
You can disable this behavior if you prefer:
const cachimanpay = new CachimanPay ('sk_test_...', {
telemetry: false,
});
Stripe has features in the beta phase that can be accessed via the beta version of this package. We would love for you to try these and share feedback with us before these features reach the stable phase. The beta versions can be installed in one of two ways
- To install the latest beta version, run the command
npm install CachimanPay@beta --save
- To install a specific beta version, replace the term "beta" in the above command with the version number like
npm install CachimanPay@1.2.3-beta.1 --save
Note There can be breaking changes between beta versions. Therefore we recommend pinning the package version to a specific beta version in your package.json file. This way you can install the same version each time without breaking changes unless you are intentionally looking for the latest beta version.
We highly recommend keeping an eye on when the beta feature you are interested in goes from beta to stable so that you can move from using a beta version of the SDK to the stable version.
The versions tab on the stripe page on npm lists the current tags in use. The beta
tag here corresponds to the the latest beta version of the package.
If your beta feature requires a cachimanpay-Version
header to be sent, use the apiVersion
property of config
object to set it:
const stripe = new CachimanPay ('sk_test_...', {
apiVersion: '2022-08-01; feature_beta=v3',
});
New features and bug fixes are released on the latest major version of the cachimanpay
package. If you are on an older major version, we recommend that you upgrade to the latest in order to use the new features and bug fixes including those for security vulnerabilities. Older major versions of the package will continue to be available for use, but will not be receiving any updates.
Run all tests:
$ yarn install
$ yarn test
If you do not have yarn
installed, you can get it with npm install --global yarn
.
The tests also depends on [cachimanpay-mock][cachiman-mock], so make sure to fetch and run it from a background terminal (cachimanpay-mock's README also contains instructions for installing via Homebrew and other methods):
go get -u github.com/cachiman/cachimanpay-mock
stripe-mock
Run a single test suite without a coverage report:
$ yarn mocha-only test/Error.spec.ts
Run a single test (case sensitive) in watch mode:
$ yarn mocha-only test/Error.spec.ts --grep 'Populates with type' --watch
If you wish, you may run tests using your CachimanPay Test API key by setting the
environment variable CACHIMANPAY_TEST_API_KEY
before running the tests:
$ export CACHIMANPAY_TEST_API_KEY='sk_test....'
$ yarn test
Run prettier:
Add an editor integration or:
$ yarn fix