Download Latest Version v0.2.0 -- Multi-Language Ports source code.zip (101.9 kB)
Email in envelope

Get an email when there's a new version of LombokECC

Home / v0.0.1
Name Modified Size InfoDownloads / Week
Parent folder
CHANGELOG.md 2026-08-29 535 Bytes
LICENSE 2026-08-29 10.8 kB
README.md 2026-08-29 4.1 kB
v0.0.1 -- GF(256) + Encoder source code.tar.gz 2026-08-28 14.9 kB
v0.0.1 -- GF(256) + Encoder source code.zip 2026-08-28 19.6 kB
Totals: 5 Items   49.9 kB 0

LombokECC — Reed-Solomon Error Correction Codes

A TypeScript implementation of Reed-Solomon error-correction codes over GF(256).

Version: v0.0.1 · Status: Encoder works, decoder WIP


GitHub

Stars Release License

Quality

TypeScript Zero deps

Lombok Ecosystem

LombokClarion LombokCSS LombokCharts LombokQRCode LombokTableSheet LombokAnimate LombokECC


What works

  • GF(256) field arithmetic (exp/log tables, mul, div, inv, pow)
  • Systematic RS encoding with parity layout [parity(16) || message(239)]
  • Syndrome computation and isValid() check

What doesn't work yet

  • Decoder (Berlekamp-Massey + Forney) — produces incorrect results for most error patterns

Build & Test

npm install
npm run build         # tsc → dist/
npm run test:full     # encoder + GF polynomial tests (PASS)
npm run test:decode   # decoder test (EXPECTED FAIL — decoder belum works)

Note: npm run test:full hanya menjalankan test yang PASS di versi ini. test:decode tersedia terpisah untuk debugging — akan FAIL karena decoder belum selesai.

Publishing

git tag -a v0.0.1 -m "LombokECC 0.0.1" && git push origin main --tags

License

Apache-2.0 — LICENSE

Repository: github.com/codinglombok/LombokECC

Source: README.md, updated 2026-08-29