This software extracts data from export "csv" files.
- Extract fields from a CSV-like structure
- Apply some filter rules on extracted text to enrich transaction data (e.g. is it a payment, giro, who paid what)
- Give the data back as a JSON or pojo to be able to do something with it (stats, filtering, searching)
- node >= 8
- npm >= 5 (usually ships with node)
Using nvm to install specific node versions is recommended.
npm install
- Login to the portal and export your transactions as a "CSV"-file
- Inspect index.js and change "file" variable to your exported data
- Run
node index.js
- This shows you how much transactions were recognized and parsed. (TODO: [ ] export pojo)
- (TODO: [ ] JSON export switch)