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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@brokenc0de/qris

v1.1.0

Published

Utilities to parse, validate and generate strings compliant with QRIS (Quick Response Code Indonesian Standard)

Readme

QRIS Utils

Lightweight TypeScript toolkit to parse, validate and generate strings that follow the QRIS – Quick Response Code Indonesian Standard (Merchant Presented Mode — static & dynamic).


Table of Contents


Features

  • 📦 Fully-typed API (ESM & CommonJS bundles)
  • 🔒 Transparent CRC-16/CCITT checksum handling
  • 🪶 Zero-dependency, tiny footprint

Installation

# Bun
bun add @brokenc0de/qris

# npm / pnpm / yarn
npm install @brokenc0de/qris

The package ships with ESM and CJS builds & ships its own .d.ts typings.


Quick Start

import { parseQris, validateQris, generateQris } from "@brokenc0de/qris";

const raw = "00020101021226590016A011010000000000027053030310580204...C49E";

// 1️⃣ Parse → AST
const ast = parseQris(raw);

// 2️⃣ Validate (structure + CRC)
const { valid, errors } = validateQris(raw);

// 3️⃣ Manipulate and (optionally) regenerate
ast.find((f) => f.id === "54")!.value = "50000.00"; // change amount
const updated = generateQris(ast); // CRC is appended automatically

API

parseQris(raw: string): QrisObject

Converts a QRIS string into a recursive array of QrisField objects. Throws on malformed input.

generateQris(obj: QrisObject, options?)

Serialises the AST back to a QRIS string.

includeCRC (default true) — append CRC-16/CCITT checksum.

validateQris(rawOrObj)

Returns { valid: boolean, errors: ValidationError[] } after:

  • Structural checks (mandatory tags, min/max length)
  • Checksum verification

Types

interface QrisField {
  id: string; // "00" – "99"
  value: string | QrisField[]; // nested TLVs for template tags
  name?: string; // friendly tag description
}

type QrisObject = QrisField[];

CLI (optional)

Run commands straight from your terminal — no project setup needed.

Usage

# One-off (recommended)
bunx qris-utils <command> "<qris>"

# Or install globally
bun add -g @brokenc0de/qris          # Bun
npm  i  -g @brokenc0de/qris          # npm / pnpm / yarn

qris-utils <command> "<qris>"

Available commands

| Command | Description | | ----------------- | ------------------------------------------------------------------------- | | parse <qris> | Pretty-prints the AST as JSON | | validate <qris> | Validates structure + CRC, prints result and exits with code 1 on failure |

Example:

bunx qris-utils validate "000201010212265900..."   # ✔ QRIS string is valid.
bunx qris-utils parse "000201010212265900..."      # → JSON AST

More commands (e.g. generate) will land in future releases.


Development

  1. bun install