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 🙏

© 2026 – Pkg Stats / Ryan Hefner

clickpay_ts

v1.0.3

Published

paytap & clickpay payment integration with nodejs V10.X

Readme

Nodejs Package For clickpay_ts for paytap & clickpay

Description

This Package provides integration with the paytap & clickpay payment gateway.

CONTENTS OF THIS FILE

  • Introduction
  • Requirements
  • Installation

INTRODUCTION

This Package integrates paytap & clickpay online payments into the Nodejs Project.

REQUIREMENTS

This module requires - axios

INSTALLATION

  • Install Via NPM:
npm install clickpay_ts
  • Github Repo Link:
    • https://github.com/ktsyr1/clickpay_ts

EXAMPLES

Init The Package:

const paytabs = require('clickpay_ts');
paytabs.setConfig(<profile_id>,<server_key>,<region>,<agent>);

Create Pay Page:

paytabs.createPaymentPage(
    [<payment_methods>],
    ['sale','ecom'],
    [<cart_id>,<cart_currency>,<cart_amount>,<cart_description>],
    [<customer_name>,<customer_email>,<customer_phone>,<customer_address>,<customer_city>,<customer_state>,<customer_country>,<customer_Zip>,<customer_ip>],
    [<shipping_name>,<shipping_email>,<shipping_phone>,<shipping_address>,<shipping_city>,<shipping_state>,<shipping_country>,<shipping_Zip>,<shipping_ip>],
    [<callback>,<return_url>],
    <paypage_lang>,
    callback
)


function createPayPage(result)    {
    console.log(result);
}

Parameters Example

paytabs.createPaymentPage(
    ['all'],
    ['sale','ecom'],
    ['cart_22222','EGP','100','test'],    
    ['walaa Elsaeed','[email protected]','0522222222','address street','Egypt','egypt','EG','12345','1.1.1.1'],
    ['walaa Elsaeed','[email protected]','0522222222','address street','Egypt','egypt','EG','12345','1.1.1.1'],
    ['https://webhook.site/730acce0-e54e-4522-8a45-f9b8e44624b6','https://site.paytabs.com/en/'],
    'en',
    createPayPage
    )

if you want to use framed paypage you should pass parameter framed = true .

paytabs.createPaymentPage(
    ['all'],
    ['sale','ecom'],
    ['cart_22222','EGP','100','test'],
    ['walaa Elsaeed','[email protected]','0522222222','address street','Egypt','egypt','EG','12345','1.1.1.1'],
    ['walaa Elsaeed','[email protected]','0522222222','address street','Egypt','egypt','EG','12345','1.1.1.1'],
    ['https://webhook.site/730acce0-e54e-4522-8a45-f9b8e44624b6','https://site.paytabs.com/en/'],
    'en',
    createPayPage,
    True
)

Validate Payment:


paytabs.validatePayment(<transRef>,<callback>);

function verifyPayment(result)    {
    if (result['response_code:'] === 400) console.log('false');
    else console.log('true');
}

Parameters Example

paytabs.validatePayment('TST2109000130191',verifyPayment);

Refund:

paytabs.queryTransaction(
    [<transRef>,'refund','ecom'],
    [<cart_id>,<cart_currency>,<cart_amount>,<cart_description>],
    callback
);
    
function refunTrans(result){
    if (result['response_code:'] === 400)     console.log('Unable to process your request, please make sure of your TransRef');
    else  console.log(result); 
}

Parameters Example

paytabs.queryTransaction(
    ['TST2108800126691','refund','ecom'],
    ['cart_22222','EGP','100','test'],
    refunTrans
);
  • important notes:

    • Make sure that your website currency is as same as your currency in payTabs profile.

    • Make sure that you send the region as the syntax below:

    • Send ARE if your region is United Arab Emirates.

    • Send SAU if your region is Saudi Arabia.

    • Send OMN if your region is Oman.

    • Send JOR if your region is Jordan

    • Send EGY if your region is Egypt

    • Send GLOBAL if your region is Global

  • agent = "paytap" || "clickpay"