
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
A simple and tiny library for generating GiroCode (EPC QR code) strings
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
.
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%).
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.
Copyright (c) 2023 Thomas Rasshofer
Licensed under the MIT license.
See LICENSE for more info.
FAQs
A simple and tiny library for generating GiroCode (EPC QR code) strings
The npm package girocode receives a total of 19 weekly downloads. As such, girocode popularity was classified as not popular.
We found that girocode demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.