starling-qif

1.0.0 • Public • Published

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

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.0
    2
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.0
    2
  • 0.0.1
    0

Package Sidebar

Install

npm i starling-qif

Weekly Downloads

2

Version

1.0.0

License

MIT

Unpacked Size

4.17 kB

Total Files

5

Last publish

Collaborators

  • roylines