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

paytoday

v0.5.4

Published

A modern Javascript SDK for Namibia's Pay with PayToday

Downloads

13

Readme

PayToday JS SDK

PayToday is a payment service provider based in Namibia. You can create a business account with PayToday to get your business ID to use this package. If you do not have an account, you can still use the package for testing and development.

Getting started

Installation

npm install paytoday

or

yarn add paytoday

Browser

Use the following CDN link to include in your script tag in <head>:

https://unpkg.com/paytoday/dist/index.umd.js

Initialization

Start by creating the Paytoday instance in your app.

imported

import { initializePaytoday } from "paytoday"

// Debug / test mode
initializePaytoday({ debug: true })
  .then(paytoday => /* The instance */)

// Production mode
const payConfig = {
  businessId: "<your-biz-id>",
  businessName: "<your-biz-name>"
}

initializePaytoday(payconfig)
  .then(paytoday => /* The instance */)

browser

<!DOCTYPE html>
<html>
  <head>
    <script src="https://unpkg.com/paytoday/dist/index.umd.js"></script>
  </head>

  <body>
    <script>
      const { initializePaytoday } = window.PaytodaySDK;

      // Development mode.
      initializePaytoday({ debug: true }).then((paytoday) =>
        console.log(paytoday)
      );
    </script>
  </body>
</html>

Create the checkout button

You can check for examples in the repo in the /examples directory, there is examples for Vue.js (can be any JS framework) and the browser.

import { initializePaytoday } from "paytoday";

const paytoday = await initializePaytoday({
  debug: true,
});

const amount = 1000;
const reference = "INV12345";
const redirectURL = "https://yourapp.com/payment-success";

const element = document.getElementById("your-el-id");

paytoday.createButton(element, amount, reference, redirectURL);

When the button is clicked a checkout will be created. After payment your redirectURL will be notified with status and ref query params.

Status can be:

  • success
  • failed

Ref is equivalent to the ref you passed. You can verify payments on your server with this data by requesting:

https://paytoday.com.na/transactions/txstatus/{businessId}/{ref}.json

API

initializePaytoday(config: PayConfig): PaytodayInstance
  • config: object

    • businessId: string (optional if debug)
    • businessName: string (optional if debug)
    • debug: boolean(optional)
// PaytodayInstance Methods
createButton(el: HTMLElement, amount: number, reference: string, redirectURL?: string);
  • el: HTMLElement (required)
  • amount: number (required) (-1 will allow the user to input their own amount)
  • reference: string (required)
  • redirectURL: string (optional)

// More to come