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

youcan-payment-nodejs-sdk

v1.2.8

Published

This package allows the developer to interact easily with the YouCan Pay API.

Downloads

4

Readme

youcan-payment-nodejs-sdk

This package allows the developer to interact easily with the YouCan Pay API. (this package is in early development)

This package allows the developer to interact easily with the YouCan Pay API.

This documentation is separated in two integrations: Default Integration and the Standalone Integration. you have the choice to do one integration or both integrations in your checkout page.

YouCan Pay SDK Setup

Instructions for adding the YouCan Pay SDK to your NodeJS Applications.

Quick start

yarn add youcan-payment-nodejs-sdk
const youCanPayment = new YouCanPay(
  'pri_sandbox_72c4f469-afeb-4eed-b840-9c0c9', // you can private key
  true // is sandbox mode
);
const token = await youCanPayment.getToken({
  amount: 2000, //required
  currency: CurrencyCode.MAD, //required
  customer_ip: '127.0.0.1', //required
  order_id: 'XXXXXX', //required
  success_url: 'https://yourdomain.com/orders-status/success', //required
  error_url: 'https://yourdomain.com/orders-status/error', //optional
  customer: {
    name: '',
    address: '',
    zip_code: '',
    city: '',
    state: '',
    country_code: '',
    phone: '',
    email: '',
  }, //optional
});

console.log(token.id); // 71d8c27-2416-41ee-b750-d6382f72a565

YouCan Pay: Standalone Integration

const youCanPayment = new YouCanPay(
  'pri_sandbox_72c4f469-afeb-4eed-b840-9c0c9',
  true
);
const paymentUrl = await youCanPayment.getPaymentUrl(
  {
    amount: 2000,
    currency: CurrencyCode.MAD,
    customer_ip: '127.0.0.1',
    order_id: 'XXXXXX',
    success_url: 'https://yourdomain.com/orders-status/success',
    error_url: 'https://yourdomain.com/orders-status/error',
  },
  Lang.AR
);
console.log(paymentUrl); // https://youcanpay.com/sandbox/payment-form/1bd269e0-62d9-4a37-822c-191b28d7af5c?lang=ar