0.1.6 • Published 5 years ago

2co-react v0.1.6

Weekly downloads
38
License
MIT
Repository
github
Last release
5 years ago

2Checkout payment gateway and react

React stateful component with or without credit form that connect to 2CO api and generate client token

Getting Started

2Checkout payment gateway need a token to create and charge orders. This package will create a token for you.

Using this token, you will need to send your order and customer info to 2Checkout to make the charge.

This can be done by 2Checkout API or by 2Checkout-Node.

I recommend using 2Checkout-Node along with this package to generate token and send it to 2Checkout-Node to create the charge.

Installing & Usage

A step by step series of examples that tell you how to get a token:

Install:

npm i 2co-react

or

yarn add 2co-react

Usage:

Importing:

import TCO from '2co-react';

This is the only component you need to add:

        <TCO
          sellerId="xxxxx"
          publishableKey="xxxxx"
          sandbox
          showForm
          showModal
          showLoading
          returnToken={this.returnToken}
        />

Props Options:

TCO PropVALUEEffect
sellerIdselled id from 2checkout account-
publishableKeypublishable key from 2checkout account-
sandboxtrue or falsegenerate a sandbox or production token
showFormtrue or falseshow cedit card form
showModaltrue or falseshow credit card form on modal or on page
showLoadingtrue or falseshow loading bar while waiting for response back
returnTokenfunctionfunction that will recive one argument as the token string

Authors

License

This project is licensed under the MIT License