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

bysquare

v2.11.0

Published

It's a national standard for payment QR codes adopted by Slovak Banking Association (SBA)

Downloads

1,029

Readme

bysquare

Simple JavaScript library to encode and decode "PAY by square" string.

What is PAY by square?

It's 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.

Can I generate an image?

This library doesn't have a specific opinion and how the QR code string is transformed into images depends on how you implement it. See examples.

Features

  • Encode data to qr string
  • Decode data to json
  • Detect bysquare from qr string

Installation

[!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 registry

npm install bysquare

CLI Node v18+

npm install --global bysquare

deno

Since v1.28+ import from npm registry using npm: prefix.

import {
	decode,
	encode,
} from "npm:bysquare@latest";

Browser

<script type="module">
	import { encode, decode } from "https://esm.sh/bysquare@latest";
</script>

Usage

Encode

import {
	CurrencyCode,
	DataModel,
	encode,
	PaymentOptions,
} from "bysquare";

// string ready to be encoded to QR
const qrString = encode({
	invoiceId: "random-id",
	payments: [
		{
			type: PaymentOptions.PaymentOrder,
			amount: 100.0,
			bankAccounts: [
				{
					iban: "SK9611000000002918599669",
				},
			],
			currencyCode: CurrencyCode.EUR,
			variableSymbol: "123",
		},
	],
});

Decode

import { decode } from "bysquare";

const model = decode(
	"0405QH8090IFU27IV0J6HGGLIOTIBVHNQQJQ6LAVGNBT363HR13JC6CB54HSI0KH9FCRASHNQBSKAQD2LJ4AU400UVKDNDPFRKLOBEVVVU0QJ000",
);

// {
// 	invoiceId: "random-id",
// 	payments: [
// 		{
// 			type: 1,
// 			amount: 100.0,
// 			bankAccounts: [
// 				{ iban: "SK9611000000002918599669" },
// 			],
// 			currencyCode: "EUR",
// 			variableSymbol: "123",
// 		}
// 	]
// }
//

CLI

Encode

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

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>

How it works

Encoding sequence

logic

Platform support

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 & Deno

  • Node.js v18 and later.
  • Deno v1.28 and later.

Browser

The latest version of Chrome, Firefox, and Safari.

Troubleshooting & Recommendations

Encoded data are without diacritics

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 }).

Related