upiqr
TypeScript icon, indicating that this package has built-in type declarations

1.2.0 • Public • Published

npm package Build Status Downloads Issues Commitizen Friendly Semantic Release

Generate NPCI's UPI QR code (BASE64) along with UPI intent link, By using it any payment is possible from UPI enabled apps.

Supports


This package will work on client and server.

  import upiqr from "upiqr";

  upiqr({
    payeeVPA: "bhar4t@upi",
    payeeName: "Bharat Sahu"
  })
  .then((upi) => {
    console.log(upi.qr);      // data:image/png;base64,eR0lGODP...
    console.log(upi.intent);  // upi://pay?pa=bhar4t@upi&pn=Bharat..
  })
  .catch(err => {
    console.log(err);
  });

Fields detail:

Fields Description Required
payeeVPA VPA address from UPI payment account Mandatory
payeeName Merchant Name registered in UPI payment account Mandatory
payeeMerchantCode Merchant Code from UPI payment account Optional
transactionId Unique transaction id for merchant's reference Optional
transactionRef Unique transaction id for merchant's reference Optional
transactionNote Note will appear in payment app while transaction Optional
amount Amount Optional
minimumAmount Minimum amount that has to be transferred Optional
currency Currency of amount (default: INR) Optional
transactionRefUrl URL for the order Optional

In table, fields requirement column is based on static QR, For dynamic QR you need to change more fields along with payeeVPA and payeeName.

For a complete list of supported fields, refer to the NPCI UPI Linking Specs

Internally using qrcode for QR Generation.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.2.0
    80
    • latest

Version History

Package Sidebar

Install

npm i upiqr

Weekly Downloads

240

Version

1.2.0

License

MIT

Unpacked Size

7.87 kB

Total Files

7

Last publish

Collaborators

  • bhar4t