Modern XMPP in the browser, with a JSON API.
Stanza.io is a library for using modern XMPP in the browser, and it does that by exposing everything as JSON. Unless you insist, you have no need to ever see or touch any XML when using stanza.io.
Starting with v4.0.0, stanza.io is using the protocol specified in the latest XMPP over WebSocket draft, which contains backwards incompatible changes.
Servers have started switching to using the latest protocol; notably, Prosody's WebSocket module. If your server has not yet been upgraded, you will need to use a 3.x version of stanza.io.
$ npm install stanza.io$ gruntThe bundled and minified files will be in the generated build directory.
- Find or install a server which supports XMPP over WebSocket (Prosody recommended).
- Run
gruntto buildbuild/stanzaio.bundle.js - Open
demo.htmlin your browser - Enter your connection info, click connect.
- Use the JS console to play with the XMPP client (
var client).
If you want to see stanza.io in action in a full-featured client, take a look at Otalk.im (and its source).
var XMPP = require('stanza.io'); // if using browserify
var client = XMPP.createClient({
jid: 'echobot@example.com',
password: 'hunter2'
});
client.on('session:started', function () {
client.getRoster();
client.sendPresence();
});
client.on('chat', function (msg) {
client.sendMessage({
to: msg.from,
body: 'You sent: ' + msg.body
});
});
client.connect();MIT
If you like this, follow @lancestout on twitter.



