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

czech-bank-statements

v0.1.0

Published

Parse Czech & Slovak bank statements (CSV, ABO/GPC) into a unified transaction model. Encoding-aware (Windows-1250), variable/constant/specific symbols, automatic column detection.

Readme

czech-bank-statements

Parse Czech & Slovak bank statements into a single, typed transaction model. CSV-first (the format people actually export from internet banking), plus the legacy ABO / GPC format used by accounting software.

  • 🇨🇿 Czech-aware: variable / constant / specific symbols (VS/KS/SS), číslo účtu/kód banky, comma decimals, space thousands.
  • 🔤 Encoding-aware: Czech bank CSVs are frequently Windows-1250, not UTF-8 — detected automatically.
  • 🧭 Auto-detection: sniffs the delimiter and maps columns from the header (Czech and English, accent-insensitive), so it works across banks without per-bank configuration.
  • 📦 Zero runtime dependencies. ESM + CJS + types.

Status: v0.x — validate before you trust it with money. Bank CSV layouts differ and change (e.g. KB → KB+ in 2025). Always review the parsed result against the original statement. PRs with anonymized real samples from your bank are very welcome — that's how coverage improves.

Install

npm install czech-bank-statements

Usage

import { parseStatement } from 'czech-bank-statements';

// input can be a string, Buffer, Uint8Array or ArrayBuffer (raw file bytes)
const result = parseStatement(fileBuffer, { incomingOnly: true });

if (!result.ok) console.warn(result.errors, result.warnings);

for (const tx of result.transactions) {
  console.log(tx.date, tx.amount, tx.currency, tx.variableSymbol, tx.counterpartyName);
}

The transaction model

interface Transaction {
  date: Date;                 // UTC midnight of the booking date
  amount: number;             // signed: + credit (in), − debit (out); major units
  direction: 'credit' | 'debit';
  currency: string;           // "CZK" by default
  variableSymbol?: string;
  constantSymbol?: string;
  specificSymbol?: string;
  counterpartyAccount?: string; // "123456789/0100"
  counterpartyName?: string;
  description?: string;
  transactionId?: string;
  balance?: number;
  raw?: Record<string, string>; // original row/record
}

Supported formats

| Format | Status | Notes | |---|---|---| | CSV | ✅ | Auto delimiter + column detection, CP1250/UTF-8, debit/credit or signed amount | | ABO / GPC (.gpc) | ✅ | Fixed-width 075/074 records; field positions per the Fio/ČS/KB spec | | camt.053 (ISO 20022 XML) | 🔜 | Planned | | MT940 | 🔜 | Planned | | PDF | ❌ | Out of scope (needs OCR/LLM) |

API

  • parseStatement(input, options?) — auto-detect encoding + format.
  • parseCsv(text, delimiter?) — force CSV.
  • parseAbo(text) — force ABO/GPC.
  • parseAmount, parseDate — exported helpers.

ParseOptions: { encoding?: 'auto'|'utf-8'|'windows-1250'; delimiter?; format?; incomingOnly? }.

Contributing

Found a bank whose CSV isn't recognised? Open an issue/PR with a small, anonymized sample (header row + a few lines). Run npm test before submitting.

License

MIT © Jan Lemon