lhl 6ff0e96ad3 8-4-1 | 1 ano atrás | |
---|---|---|
.. | ||
History.md | 1 ano atrás | |
README.md | 1 ano atrás | |
index.js | 1 ano atrás | |
package.json | 1 ano atrás |
A base class for sdk with default error handler.
$ npm install sdk-base
var Base = require('sdk-base');
var util = require('util');
function Client() {
Base.call(this);
}
util.inherits(Client, Base);
.ready(flagOrFunction)
// init ready
client.ready(true);
// listen client ready
client.ready(function() {
console.log('client is ready');
});
.on(event, listener)
// listen error event
client.on('error', function(err) {
console.error(err.stack);
});
MIT