0.1.4 • Published 9 years ago

cmb-bank v0.1.4

Weekly downloads
6
License
GPL-3.0
Repository
github
Last release
9 years ago

npm version Dependency Status npm

cmb-bank

Simple node module to get information of your cmb account.

$ npm install cmb-bank

Then get json information of your account

 var cmb = require('cmb-bank');
 var token;

 cmb.login('user','password').then(function(result) {
  console.log(result);
  token = result;
 })

 cmb.infosPerson(token).then(function(result) {
  console.log(result);
 })

cmb-bank module exposes :

  • login
  • synthesecomptes
  • infosPerson
  • pendingListOperations
  • logout