
Security News
curl Shuts Down Bug Bounty Program After Flood of AI Slop Reports
A surge of AI-generated vulnerability reports has pushed open source maintainers to rethink bug bounties and tighten security disclosure processes.
stripe-onboarder
Advanced tools
Automate the onboarding of Stripe Express accounts using Puppeteer. This is intended to be used in Stripe's test mode to onboard verified Connect accounts without having to manually complete the onboarding process.

Onboarding accounts with the card_payments and transfers capabilities are supported. Please open an issue if the onboarder is not working with your account's requested capabilities.
Install the package with:
npm install stripe-onboarder
# or
yarn add stripe-onboarder
Onboard an Express account using the following command:
stripe-onboarder onboard [url]
| Name | Description |
|---|---|
[url] | Optional Account Link url or an OAuth link. If omitted, a new Express Account and Account Link can be created by providing your Stripe secret API key via the STRIPE_SECRET_KEY environment variable or when prompted by the CLI. |
Default values are provided for all options that will allow the Express account to pass verifications: https://stripe.com/docs/connect/testing
| Name | Default |
|---|---|
--account_number | "000123456789" |
--address.line1 | "address_full_match" |
--address.line2 | |
--address.city | "Beverly Hills" |
--address.state | "CA" |
--address.zip | "90210" |
--business_type | "company" |
--company_name | Random company name |
--company_phone | "0000000000" |
--company_tax_id | "000000000" |
--company_url | Random URL |
--country | US |
--date_of_birth | "01011901" |
--email | Random email |
--first_name | Random first name |
--headless | true |
--id_number | "000000000" |
--last_name | Random last name |
--phone | "0000000000" |
--routing_number | "110000000" |
--ssn_last_4 | "0000" |
--title | Random job title |
import { onboard } from "stripe-onboarder";
const account = await stripe.accounts.create({ type: "express" });
const accountLink = await stripe.accountLinks.create({
account: account.id,
type: "account_onboarding",
});
await onboard({
headless: false, // Boolean flag for Puppeteer to run browser in headless mode. Defaults to true.
url: accountLink.url, // Account Link URL for onboarding
values: {}, // Optional object of onboarding form values to override default values
});
Note Immediately after the promise returned by the
onboardfunction is resolved, the Connect account's status will be "Pending" which means the account is still being verified by Stripe. This can take up to a few minutes to complete. You can poll retrieving the account to check if the account hascharges_enabledandpayouts_enabled.
Please read CONTRIBUTING.md to learn about contributing to this project.
FAQs
Automate onboarding Stripe Connect Express accounts using Puppeteer
We found that stripe-onboarder demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
A surge of AI-generated vulnerability reports has pushed open source maintainers to rethink bug bounties and tighten security disclosure processes.

Product
Scan results now load faster and remain consistent over time, with stable URLs and on-demand rescans for fresh security data.

Product
Socket's new Alert Details page is designed to surface more context, with a clearer layout, reachability dependency chains, and structured review.