Skip to main content
Only available for Node.js.
The Stripe datasource connects your Stripe account to Forest, allowing you to browse and manage your Stripe data (customers, payments, subscriptions, and more) directly from your back-office.

Installation

npm install @forestadmin-experimental/datasource-stripe

Basic usage

import { createAgent } from '@forestadmin/agent';
import { createStripeDataSource } from '@forestadmin-experimental/datasource-stripe';

const agent = createAgent(options);

agent.addDataSource(
  createStripeDataSource({
    secretKey: process.env.STRIPE_SECRET_KEY
  })
);

Source code

github.com/ForestAdmin/forestadmin-experimental, datasource-stripe

Source code

This connector is open source. Browse the code or contribute on GitHub: @forestadmin-experimental/datasource-stripe.