@ -38,3 +38,62 @@ You have to edit a new file in `test/conf.js` :
Then, you can launch test :
node test/test.js
API
---
Client handle all the xmpp stack with object, callback, event and handlers. All in async.
### Client ###
The first object is the client :
var c = new Client({
jid: 'bob@jabber.org',
password: 'beuha'
}, function() {
sys.debug("I'm connected");
});
You instiante it with xmpp params and callback, tirggered when connection is done, and roster fetched. All your work should be inside the callback, outside, you don't know your state.
The client throw events :
* _presence_
* _presence:error_
* _message_
### IQ ###
Iq is handled quietly. You can ask someone with a callback, for the response.