Client for the Eve API with cache provided by Cacheman
var Client = require('./lib/client'),
client = new Client({
key: '123456',
code: 'yellowsubmarineyellowsubmarine'
});
client.fetch('account', 'AccountStatus', {}, function(err, result) {
console.log(err, result);
});
var options = {
key: '1234', // Eve Key ID
code: 'yellowsubmarine', // Eve Verification Code
cache: null // (Optional Cacheman configuration, defaults to memory cache)
};
var client = new Client(options);
See Cacheman for cache details
client.fetch('server', 'ServerStatus', {}, function(err, result) {
console.log(err, result);
});