starling-qif
v1.0.0
Published
converter between starling transaction format and qif
Downloads
3
Readme
starling-qif
Node.js module to convert between transactions (or feedItems) returned from the Starling Bank API and QIF (Quicken Interchange Format) for importing into accountancy packages. I originally developed this to run in a scheduled monthly lambda to convert email transactions from my business Starling Bank Account to my accountant for importing into their finance system.
const Starling = require('starling-developer-sdk');
const {toQIF} = require('starling-qif');
// get feed items from Starling API
const client = new Starling({...});
const {feedItems} = await client.account.getFeedItemsBetween({...});
// convert them to qif
const qif = toQIF(feedItems);
console.log(qif);
Installation
$ npm install starling-qif