@madkudu/madkudu-node
v0.2.1
Published
Javascript bindings for the MadKudu API
Downloads
9
Keywords
Readme
madkudu-node
node.js bindings for the MadKudu API
Installation
npm install --save @madkudu/madkudu-node
var madkudu = require('@madkudu/madkudu-node')('api_key');
Persons
madkudu.person.find({ email: '[email protected]' })
.then(person => {
console.log(person);
});
});
Companies
madkudu.company.find({ domain: 'madkudu.com' })
.then(company => {
console.log(company);
});
});
Contributing
Test commands
MADKUDU_API_KEY=xxx npm test