Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
stripe-client
Advanced tools
React Native Stripe wrapper that makes using Stripe with React Native safe and easy in iOS/Android.
React Native Stripe wrapper that makes using Stripe with React Native easy in iOS/Android.
npm install stripe-client --save
Or
yarn add stripe-client
stripe.createToken(...)
returns a Promise of a token object (https://stripe.com/docs/api/node#token_object).
If the token object creation fails (ex. the expiration date is invalid, the card number is the wrong format), stripe.createToken(...)
returns the corresponding error (https://stripe.com/docs/api/node#errors).
stripe.createToken({
card: {
"number": '4242424242424242',
"exp_month": 12,
"exp_year": 2018,
"cvc": '123'
}
});
{
"id": "tok_1AWuxsJd4nFN3COfSKY8195M",
"object": "token",
"card": {
"id": "card_1AWuxsJd4nFN3COfUOhQfBVw",
"object": "card",
"address_city": null,
"address_country": null,
"address_line1": null,
"address_line1_check": null,
"address_line2": null,
"address_state": null,
"address_zip": null,
"address_zip_check": null,
"brand": "Visa",
"country": "US",
"cvc_check": null,
"dynamic_last4": null,
"exp_month": 8,
"exp_year": 2018,
"fingerprint": "EL88ufXeYTG02LOU",
"funding": "credit",
"last4": "4242",
"metadata": {
},
"name": null,
"tokenization_method": null
},
"client_ip": null,
"created": 1497998212,
"livemode": false,
"type": "card",
"used": false
}
import React from 'react';
var stripe = require('stripe-client')('YOUR_PUBLISHABLE_STRIPE_API_KEY');
var information = {
card: {
number: '4242424242424242',
exp_month: '02',
exp_year: '21',
cvc: '999',
name: 'Billy Joe'
}
}
export class App extends React.Component {
async onPayment() {
var card = await stripe.createToken(information);
var token = card.id;
// send token to backend for processing
}
render() {
...
}
}
import React from 'react';
var stripe = require('stripe-client')('YOUR_PUBLISHABLE_STRIPE_API_KEY');
var information = {
bank_account: {
country: 'US',
currency: 'usd',
account_holder_name: 'Noah Martinez',
account_holder_type: 'individual',
routing_number: '110000000',
account_number: '000123456789'
}
}
export class App extends React.Component {
async onPayment() {
var bank = await stripe.createToken(information);
var token = bank.id;
// send token to backend for processing
}
render() {
...
}
}
var stripe = require('stripe-client')('YOUR_PUBLISHABLE_STRIPE_API_KEY');
var information = {
pii: {
personal_id_number: '000000000'
}
}
export class App extends React.Component {
async onPayment() {
var pii = await stripe.createToken(information);
var token = pii.id;
// send token to backend for processing
}
render() {
...
}
}
Where can I find more information about creating tokens in Stripe?
Help! I don't know where to find 'YOUR_PUBLISHABLE_STRIPE_API_KEY' ?
Is it okay to publish my Stripe API key in the Expo / React Native application?
I want to charge a customer with this library. How would I do that?
FAQs
React Native Stripe wrapper that makes using Stripe with React Native safe and easy in iOS/Android.
The npm package stripe-client receives a total of 0 weekly downloads. As such, stripe-client popularity was classified as not popular.
We found that stripe-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.