beancount-parser
v0.1.0
Published
TypeScript port of Beancount parser components (lexer/parser/loader/types).
Maintainers
Readme
beancount-parser
TypeScript port of Beancount parser components used by this repo.
Included Modules
lexerparserloadertypes
Usage
import { loadBeancountOfficialPortFile } from "beancount-parser";
const out = loadBeancountOfficialPortFile("ledger.beancount");
console.log(out.entries.length, out.errors.length);Notes
- This package ports parser structure and behavior used in this project.
- It does not claim full semantic parity with Python Beancount booking/interpolation.
