Skip to content
This repository has been archived by the owner on Jan 6, 2022. It is now read-only.

TrinaryLabs/stripe-workers

Repository files navigation

stripe-workers

An unofficial stripe-sdk for workers.dev and environments that use fetch

BETA

This project is in beta, this SDK is built to follow the offical stripe-api & follow the namespace structure of stripe-node . If you find any errors please file an issue

Setup

Add to project

yarn add stripe-workers

Add to code

import { Stripe } from 'stripe-workers'

const stripe = new Stripe('Stripe-Secret-Key', {
    apiVersion: '2020-08-27', //(optional: string)
    fetch: CustomFetch, //(optional: Function) window.fetch will be used
    userAgent: 'stripe-workers/version', //(optional: string)
})

Examples of use

Deno
Workers

👩 💻 Developing

src/index.ts is the starting point.
src/resources/ the resources directory contains all the code for the stripe API resources that this package support.
src/client.ts contains the fetch client.

🤢 Issues

If you run into issues with this specific project, please feel free to file an issue here.