🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

girocode

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

girocode

A simple and tiny library for generating GiroCode (EPC QR code) strings

1.0.0
latest
Source
npm
Version published
Weekly downloads
32
-20%
Maintainers
1
Weekly downloads
 
Created
Source

GiroCode

A simple and tiny library for generating GiroCode (EPC QR code) strings

Coverage Status

Usage

npm install --save girocode
import giroCode from 'girocode';

const result = giroCode({
  name: 'Wikimedia',
  iban: 'DE33100205000001194700',
  bic: 'BFSWDE33BER',
  amount: 1.23,
});

if (result) {
  // Pipe `result` into your preferred QR code generator and do something with the resulting QR code
  console.log(result);
} else {
  // Something went wrong (e.g. invalid IBAN)
}

If you provide invalid data (e.g. an invalid IBAN or missing BIC if version 1 is used), the function will return undefined.

Bring your own QR code generator

This package (intentionally) does not contain generating the actual QR code as this usually is highly dependent on the use-case, e.g. rendering a raster image vs. SVG vs. CLI/terminal vs. fancy/artistic codes. https://www.npmjs.com/search?q=keywords:qr provides a list of QR-code-related packages where you should be able to find a suiting library for your use-case. When creating the QR code, make sure that the error correction is at the »M«/medium level (i.e. resistance of 15%).

Changelog

  • 1.0.0
    • Initial version

Roadmap

Potentially it could make sense to not only generate a GiroCode but also to parse one (into a JavaScript object) including proper validations? Maybe this gets added later, we’ll see.

License

Copyright (c) 2023 Thomas Rasshofer
Licensed under the MIT license.

See LICENSE for more info.

Keywords

girocode

FAQs

Package last updated on 30 Jan 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts