LoicMahieu / combell-api

"API" wrapper for my.combell.be
0 stars 0 forks source link

combell-api

Greenkeeper badge

Example

var Combell = require('./src/combell');
var client = new Combell('login', 'password');

client
  .login()
  .then(function () {
    return client.listDomains();
  })
  .then(console.log)
  .catch(console.error);

Methods