You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
侯晓宇
0cb2601919
|
4 weeks ago | |
---|---|---|
.. | ||
History.md | 4 weeks ago | |
README.md | 4 weeks ago | |
index.js | 4 weeks ago | |
package.json | 4 weeks ago |
README.md
sdk-base
A base class for sdk with default error handler.
Installation
$ npm install sdk-base
Usage
var Base = require('sdk-base');
var util = require('util');
function Client() {
Base.call(this);
}
util.inherits(Client, Base);
API
-
.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); });
License
MIT