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

@kodio.io/medusa-payment-quickpay

v0.61.1

Published

A QuickPay payment provider for Medusa

Downloads

17

Readme

QuickPay

Receive payments on your Medusa application using QuickPay

This project is still under development, and bugs and issues are to be expected. Feel free to file a GitHub Issue if you encounter any such bugs or issues.

Features

  • Two-way integration with QuickPay payment gateway
  • Admin UI Extension to display additional payment information from QuickPay
  • Support for incoming Webhooks
  • Support for refunds
  • (In Progress) Admin UI Extension to view settlement information

How to Install

  1. Install the project with your preferred package manager e.g.
npm install medusa-payment-quickpay
  1. Set the following environment variables in .env
QUICKPAY_API_KEY=<QUICKPAY_API_KEY_FOR_MERCHANT>
QUICKPAY_PRIVATE_KEY=<QUICKPAY_PRIVATE_KEY_FOR_MERCHANT>
STORE_BASEURL=<STOREFRONT_BASE_URL>
MEDUSA_BASE_URL=<MEDUSA_BACKEND_URL>
  1. In medusa-config.js add the following plugin configuration
const plugins = [
  // ...
  {
    resolve: `medusa-payment-paypal`,
    options: {
        api_key: process.env.QUICKPAY_API_KEY,
        private_key: process.env.QUICKPAY_PRIVATE_KEY,
        callback_url: `${process.env.APP_URL}/quickpay/hooks`,
        continue_url_template: `${process.env.STORE_BASEURL}/checkout/confirm/{id}`,
        cancel_url_template: `${process.env.STORE_BASEURL}/checkout/info`,
        enableUI: true
    },
  },
]

Configuration

The plugin supports the following configuration options

api_key

The QuickPay API key for your merchant account. Found in the Integrations section on the QuickPay Manager.

private_key

(Optional): The QuickPay private-key for your merchant account. This is required for webhook verification, and is only required if you want to enable integrations from QuickPay to Medusa.

Default: null

auto_capture

(Optional): Whether to auto capture payments, i.e. capture on authorize.

Default: false

callback_url

The URL to forward webhooks to - this should point to the /hooks/quickpay where your Medusa backend is running, e.g. https://my-medusa-backend.com/quickpay/hooks

This value will override any value set in the QuickPay Manager - leave this undefined to configure it from the QuickPay Manager.

Defaults to the value set in the QuickPay Manager.

continue_url_template

cancel_url_template