|
hai 1 ano | |
---|---|---|
.. | ||
History.md | hai 1 ano | |
README.md | hai 1 ano | |
index.js | hai 1 ano | |
package.json | hai 1 ano |
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