simplebank
v0.0.2
Published
A very basic interface to fetch data from your Simple bank account using promises
Maintainers
Readme
SimpleBank
A very basic interface to fetch data from your Simple bank account using promises
Install
npm install simplebankExample
var SimpleBank = require('simplebank');
var mySimple = Simplebank('username', 'password');
mySimple.getTransactions().then(function(transactions){
console.log(transactions);
});