"PAY by square" is a national standard for QR code payments that was adopted by the Slovak Banking Association in 2013. It is incorporated into a variety of invoices, reminders and other payment regulations.
- Simple JavaScript library to encode and decode "PAY by square" string.
- Aim to support simpe programming interface to encode and decode data for QR.
- Generating QR code images.
- Parsing QR code images.
[!NOTE] This package is native ESM and no longer provides a CommonJS export. If your project uses CommonJS, you will have to convert to ESM or use the dynamic
import()
function.
npm install bysquare
npm install --global bysquare
Since v1.28+
import from npm registry using npm:
prefix.
import {
decode,
encode,
} from "npm:bysquare@latest";
<script type="module">
import { encode, decode } from "https://esm.sh/bysquare@latest";
</script>
Simple helper functions to wrap encoding for most common use cases.
-
simplePayment
- Encode simple payment data. -
directDebit
- Encode direct debit data. -
standingOrder
- Encode standing order data.
import { simplePayment } from "bysquare";
const qrstring = simplePayment({
amount: 100,
variableSymbol: "123456",
currencyCode: CurrencyCode.EUR,
iban: "SK9611000000002918599669",
});
For more complex data use encode
and decode
functions:
import {
CurrencyCode,
DataModel,
decode,
encode,
PaymentOptions,
} from "bysquare";
const data = {
invoiceId: "random-id",
payments: [
{
type: PaymentOptions.PaymentOrder,
currencyCode: CurrencyCode.EUR,
amount: 100.0,
variableSymbol: "123",
paymentNote: "hello world",
bankAccounts: [{ iban: "SK9611000000002918599669" }],
// ...more fields
},
],
} satisfies DataModel;
// Encode data to a QR string
const qrstring = encode(data);
// Decode QR string back to the original data model
const model = decode(qrstring);
Encode JSON or JSONL data from files and print the corresponding QR code.
npx bysquare --encode file1.json file2.json...
npx bysquare --encode file.jsonl
Decode the specified QR code string and print the corresponding JSON data. The qrstring argument should be a valid QR code string.
npx bysquare --decode <qrstring>
I mainly focus on LTS versions of Node.js and try to use the most idiomatic ECMAScript possible to avoid specific runtime coupling.
This doesn't mean that the library won't work on older versions, but it might not be as reliable.
As of v1.28
, Deno now includes built-in support for npm modules and is ready
to use without additional setup, showing its improved maturity.
- Node.js
v18
and later. - Deno
v1.28
and later.
The latest version of Chrome, Firefox, and Safari.
The library removes all diacritics from the input data to ensure maximum compatibility, as not all banks support diacritics, which may lead to errors. If you need to retain diacritics, disable deburr option when encoding data - encode(model, { deburr: false })
.