Skip to content

Instantly share code, notes, and snippets.

View skomarfaruque's full-sized avatar

Sk. Omar faruque skomarfaruque

  • Dhaka
View GitHub Profile
@skomarfaruque
skomarfaruque / stripe
Created November 8, 2017 12:04
stripetoken backend nodejs
await stripe.tokens.create({
card: {
"number": '4242424242424242',
"exp_month": 12,
"exp_year": 2018,
"cvc": '123'
}
}, function(err, token) {
stripe.customers.create({
email: '[email protected]'