| Name | Modified | Size | Downloads / 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
Quality
Lombok Ecosystem
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:fullhanya menjalankan test yang PASS di versi ini.test:decodetersedia 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