moneydashboard
v2.0.2
Published
A simple library to pull data from moneydashboard.com
Downloads
12
Readme
MoneyDashboard
A simple library to pull data from moneydashboard.com
Example
CLI
npm install moneydashboard -gmoneydashboard -e [email protected] -p myawesomepassword accounts
moneydashboard -e [email protected] -p myawesomepassword transactions [count]
moneydashboard -e [email protected] -p myawesomepassword tagsYou can also set up a config file in $HOME/.moneydashboard containing your credentials:
email = [email protected]
password = myawesomepasswordIf 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())