cashfree-dropjs

"Integrate cashfree dropin sdk"

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
cashfree-dropjs
531.1.53 months agoa year agoMinified + gzip package size for cashfree-dropjs in KB

Readme

| ⚠️ 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