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 RFC 7395 by default, which contains backwards incompatible changes.
Servers have started switching to using the RFC version of the WebSocket binding; notably, Prosody's WebSocket module for prosody-0.10
. If your server has not yet been upgraded, you can set transports
to ['old-websocket']
in the config:
var oldws = XMPP.createClient({
...
transports: ['old-websocket']
});
As of v7.3.0
, the XML/JSON mapping definitions have been split out into the jxt-xmpp module to allow their use outside of stanza.io itself.
$ npm install stanza.io
First run npm install
to get all of the dependencies, and then run make
:
$ npm install
$ make
The bundled and minified files will be in the generated build
directory.
- Find or install a server which supports XMPP over WebSocket (Prosody recommended).
- Run
npm install
in thenode_modules/stanza.io
directory. - Run
make
to buildbuild/stanzaio.bundle.js
. - Open
demo.html
in your browser. - Enter your connection info, click connect.
- Use the JS console to play with the XMPP client (
var client
).
var XMPP = require('stanza.io'); // if using browserify
var client = XMPP.createClient({
jid: 'echobot@example.com',
password: 'hunter2',
// If you have a .well-known/host-meta.json file for your
// domain, the connection transport config can be skipped.
transport: 'websocket',
wsURL: 'wss://example.com:5281/xmpp-websocket'
// (or `boshURL` if using 'bosh' as the transport)
});
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.