Repository
Current version released
3 years ago
Versions
💴 Deno Pay - a payments library for Deno apps
🛠️ Usage
import { StripeClient } from "https://deno.land/x/pay@alpha0.0.1";
const stripeClient = new StripeClient("<api-key>");
await stripeClient.customers.create({
email: "john.doe@gmail.com",
name: "John Doe",
// ...
});
const customer = await stripeClient.customers.retrieve("<some-id>");
…
📝 License
This Deno module is available as open source under the terms of the MIT License.