Skip to content
This repository has been archived by the owner on Dec 27, 2023. It is now read-only.

Latest commit

 

History

History
39 lines (28 loc) · 1.15 KB

README.md

File metadata and controls

39 lines (28 loc) · 1.15 KB
⚠️ This package is deprecated. Use our latest SDK to integrate the Cashfree Payment Gateway into your application.
NPM PACKAGE URL: https://www.npmjs.com/package/cashfree-pg-sdk-javascript
GITHUB URL: https://github.com/cashfree/cashfree-pg-sdk-javascript

Installation

npm i cashfree-dropjs

Note: add --save if you are using npm < 5.0.0

Documentation

Drop is our pre-built UI solution for accepting payments. Drop works by displaying payment components we call as drops at any place you want in your page. It can either display all the payment components at one place or different places depending on your need. Read more on: [https://docs.cashfree.com/docs/javascript-integration]

Basic Implementation:

import { cashfreeSandbox } from 'cashfree-dropjs';
//use import { cashfreeProd } from 'cashfree-dropjs';

let testCashfree = new cashfreeSandbox.Cashfree();
//let prodCashfree = new cashfreeProd.Cashfree();

testCashfree.initialiseDropin(element, {
    orderToken : string,
    onSuccess: function,
    onFailure: function,
    components: Array,
    style: object,
});

Demo

https://codesandbox.io/s/cra-forked-s7wfy