moneydashboard
v2.0.2
Published
A simple library to pull data from moneydashboard.com
Downloads
11
Readme
MoneyDashboard
A simple library to pull data from moneydashboard.com
Example
CLI
npm install moneydashboard -g
moneydashboard -e [email protected] -p myawesomepassword accounts
moneydashboard -e [email protected] -p myawesomepassword transactions [count]
moneydashboard -e [email protected] -p myawesomepassword tags
You can also set up a config file in $HOME/.moneydashboard
containing your credentials:
email = [email protected]
password = myawesomepassword
If this is set, then email and password don't need to be passed via the command line flags.
Node
const MoneyDashboard = require('moneydashboard')
const mdb = new MoneyDashboard()
await mdb.init('[email protected]', 'myawesomepassword')
console.log(await mdb.getAccounts())
console.log(await mdb.getTransactions())
console.log(await mdb.getTags())