Импортная полоса в ES6
import Stripe from 'stripe';
const stripe = new Stripe('sk_test_...');
(async () => {
const customer = await stripe.customers.create({
email: 'customer@example.com',
});
console.log(customer.id);
})();
Gleaming Gorilla