A work-in-progress simplistic client library for the Esendex REST API.
- Install via npm:
npm install esendex
- Install the dependencies:
npm install
- Use!
var esendex = require('esendex')({
username: "[email protected]",
password: "super-secret-password"
});
esendex.messages.get({count: 3}, function (err, messages) {
console.log(err || messages);
});
There's a number of example scripts that show the client library in action. Take a look at the examples directory.
Pull requests are welcome, but there are some rules:
- Please adhere to the coding style implied from existing code
- Run
npm test
to ensure your code is lint free and all tests pass before you push - Please cover all changes with sufficient tests (examples folder exempt for now)