npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vue-cashfree-sdk

v3.0.0-beta-patch-2

Published

VueJs cashfree plugin for web 3.0 version

Downloads

43,074

Readme

Vue Cashfree SDK for Web

This Cashfree SDK is built on VueJs

Features

This sdk lets you do the payment from frontend web app.

Installing

Package manager

Using npm:

$ npm install vue-cashfree-sdk

Using yarn:

$ yarn add vue-cashfree-sdk

Once the package is installed, you can import the library using import:

import VueCashfree from "vue-cashfree-sdk";

CDN

Using jsDelivr CDN :

<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue-cashfree-sdk.common.min.js"></script>

Example

<template>
  <div id="app">
    <VueCashfree
      :initialiseKey="initialiseKey"
      @onSuccess="onSuccess"
      @onFailure="onFailure"
      :orderToken="orderToken"
      env="development"
    />
    <button @click="makePayment()">Make Payment</button>
  </div>
</template>

<script>
  import VueCashfree from "vue-cashfree-sdk";
  export default {
    name: "App",
    components: {
      VueCashfree,
    },
    data() {
      return {
        orderToken: "",
        initialiseKey: false,
      };
    },
    methods: {
      async makePayment() {
        this.orderToken = "session_AhQng5UfYM7SEER";
        this.initialiseKey = false;
        setTimeout(() => {
          this.initialiseKey = true;
        }, 1);
      },
      onSuccess(res) {
        console.log("res", res);
      },
      onFailure(err) {
        console.log("err", err);
      },
    },
  };
</script>

Default values of props and methods

| Property | Type | Default value | Options | | :-----------: | :-----: | :---------------------------------: | :---------------------------------: | | initialiseKey | Boolean | False | True,False | | env | String | development | development, production | | orderToken | String | Provided by Cashfree | Provided by Cashfree Order | | onSuccess | Method | Triggers when payment is successful | Triggers when payment is successful | | onFailure | Method | Triggers when payment is failure | Triggers when payment is failure |

Props and Methods on details :

Props :

  • initialiseKey (required): This prop triggers the sdk by changing the value from false to true

    this.initialiseKey = false;
    setTimeout(() => {
      this.initialiseKey = true;
    }, 1);
  • env (optional): This prop determines cashfree sdk will be in development or production version. Its default value isdevelopment.If its value set to production then cashfree sdk will work in production mode.

    <VueCashfree
      :initialiseKey="initialiseKey"
      @onSuccess="onSuccess"
      @onFailure="onFailure"
      :orderToken="orderToken"
      env="development"
    />
  • orderToken (required): When cashfree payment is initiated a payment_session_id is provided by cashfree. payment_session_id will be found in cashfree order initiate response.

    this.orderToken = "session_AhQng5UfYM7SEER"; // This is payment_session_id. Provided by cashfree.

Methods :

  • onSuccess (required): This method is triggered when payment is successful.

    onSuccess(res) {
      console.log("res", res);
    }
  • onFailure (required): This method is triggered when payment is failure.

    onFailure(err) {
      console.log("err", err);
    }

License

The MIT License

Designed and developed by Devraj github