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

npm_xpresspay

v1.0.16

Published

xpresspay plugin

Downloads

1

Readme

Github Repository

Please checkout our Github repo for more details

npm_xpressPay

This is a JavaScript library for implementing XpressPay payment gateway

Demo

Demo

Get Started

This Javascript library provides a wrapper to add XpressPay Payment to your React, Vue, Angular and any other Javascript Framework application

Install

npm install i npm_xpresspay

or with yarn

yarn add npm_xpresspay

Usage

This library can be implemented into any Javascript framework applications

Sample Function Request and Responses

Request for calling InitialisePayment function.

To initialize the transaction, you'll need to pass information such as email, first name, last name amount, publicKey, etc. Email and amount are required. You can also pass any other additional information in the metadata object field. Here is the full list of parameters you can pass: |Param | Type | Default | Required | Description
| :------------ | :------------------- | :--------- | :------- | :------------------------------------------------- | amount | string | undefined | true | Amount you want to debit customer e.g 1000.00, 10.00... | transactionId | string | undefined | true | Unique case sensitive transaction identification | email | string | undefined | true | Email address of customer | publicKey | string | undefined | true | Your public key from XpressPay. | currency | string | NGN | true | Currency charge should be performed in. Allowed only NGN. | mode | string | Debug | true | Allowed values are Debug or Live. | callBackUrl | string | your current url page | false | CallbackUrl is the url you want your customer to be redirected to when payment is successful. The default url is the page url where customer intialized payment. | metadata | object | empty object | false | Object containing any extra information you want recorded with the transaction.

{
      "amount":  "2000.00", 
      "transactionId": "Math.floor(Math.random() * 1000000)", 
      "email": "[email protected]",
      "publicKey": "xxxxxxxxxxxxxxxxxxxxxxxxxx",
      "currency": "NGN",
      "mode": "Debug",
      "callbackUrl": "window.location.href/?transactionId=12345678",
      "metadata": [
        {
          "name": "sample",
          "value": "test",
        },
      ],
}

Response from calling InitialisePayment function

|Param | Type | Description
| :------------ | :------------------- | :------------------------------------------------- | success | boolean | Shows whether the intialise payment function call was successful or not | message | string | description of the response data | data | object | it includes authorizeUrl which is the url that you will use to redirect your customers to make payment and reference which is the unique transaction identification generated from us.

{
  "success":true,
  "message":"sucessfully initialized payment",
  "data": {
                "authorizeUrl": "http://xpay.com/xxxxxxxx",
                "reference": "xxxxxxxx",
          }
}

Request for calling VerifyPayment function.

To verify payment, you'll need to pass information such as publicKey, transactionId and mode are required. Here is the full list of parameters you can pass: |Param | Type | Default | Required | Description
| :------------ | :------------------- | :--------- | :------- | :------------------------------------------------- | transactionId | string | undefined | true | Unique case sensitive transaction identification | publicKey | string | undefined | true | Your public key from XpressPay. | mode | string | Debug | true | Allowed values are Debug or Live.

{
    "publicKey": "xxxxxxxxxxxxxx",
    "transactionId":"1234567890",
    "mode": "Debug",
}

Response from calling VerifyPayment function

|Param | Type | Description
| :------------ | :------------------- | :------------------------------------------------- | success | boolean | Shows whether the intialise payment function call was successful or not | message | string | description of the response data

data object

|Param | Type | Description
| :------------ | :------------------- | :------------------------------------------------- | amount | string | amount debited from customer | currency | string | amount currency | status | string | status from the transaction made by cusstomer | paymentType | string | type of payment made by customer eg Card, Bank, USSD, QR.... | gatewayResponse | string | response from payment gateway | transactionId | string | unique transaction identification generated by you for the customer transaction.

histories objects ($values)

|Param | Type | Description
| :------------ | :------------------- | :------------------------------------------------- | type | string | Identicates the title of the summary of what happened during customer transaction on our payment page at a particular period of time. eg action which means customer inputed details or clicks a button success which means transaction was successful error which means error occured at the end of the transaction redirect which means user was redirected | message | string | Description of what customer did or happened during the particular period of making transaction on our payment page | status | string | The status from the transaction made by customer | date | string | The date customer or system executed this process | time | string | The time the customer or system executed this process

{
  "success":true,
  "message":"sucessfully initialized payment",
   "data": {
    "$id": "2",
    "amount": "10.00",
    "currency": "NGN",
    "status": "Transaction Successful",
    "paymentType":"Card",
    "gatewayResponse": "Transaction Successful. Approved",
    "transactionId": "1234567",
    "histories": {
      "$id": "3",
      "$values": [
        {
          "$id": "4",
          "type": "action",
          "message": "Filled these fields: card number, card expiry, card cvv and card pin",
          "date": "15 Sep 2021",
          "time": "08:14 AM"
        },
        {
          "$id": "5",
          "type": "action",
          "message": "Attempt to pay",
          "date": "15 Sep 2021",
          "time": "08:17 AM"
        },
         {
          "$id": "6",
          "type": "success",
          "message": "Successful transaction",
          "date": "15 Sep 2021",
          "time": "08:18 AM"
        },
        {
          "$id": "7",
          "type": "redirect",
          "message": "Redirected user back to your app",
          "date": "15 Sep 2021",
          "time": "08:19 AM"
        }
      ]
    }
  }
}

1. Using React

Please checkout React Documentation for how you can implement it on react

2. Using Angular

Please checkout Angular Documentation for how you can implement it on angular

3. Using Vue

Please checkout Vue Documentation for how you can implement it on vue

4. Using CDN

Please checkout Via CDN Documentation for how you can implement it via CDN

How can I thank you?

Why not star the github repo? I'd love the attention! Why not share the link for this repository on Twitter or Any Social Media? Spread the word!

Don't forget to follow me on twitter!

Thanks! Olumuyiwa Aro

License

This project is licensed under the MIT License - see the LICENSE.md file for details