12.20.0 • Published 3 months ago

stanza v12.20.0

Weekly downloads
2,475
License
MIT
Repository
github
Last release
3 months ago

StanzaJS

Modern XMPP, with a JSON API.

What is this?

StanzaJS is a JavaScript/TypeScript library for using modern XMPP, 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 StanzaJS.

Installing

npm install stanza

Echo Client Demo

import * as XMPP from 'stanza';

const 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.
    transports: {
        websocket: 'wss://example.com:5281/xmpp-websocket',
        bosh: 'https://example.com:5281/http-bind'
    }
});

client.on('session:started', () => {
    client.getRoster();
    client.sendPresence();
});

client.on('chat', msg => {
    client.sendMessage({
        to: msg.from,
        body: 'You sent: ' + msg.body
    });
});

client.connect();

Documentation

Discussion

MUC Room: discuss@stanzajs.org / Logs

Recommended Modules

These are some additional modules that are highly recommended for use with StanzaJS:

NameDescriptionSource
staydownRender helper that keeps an element scrolled to the bottom based on user intent.Source
webrtc-adapterShims browsers to provide a consistent WebRTC API.Source

License

MIT

Portions of StanzaJS are derived from prior works. See NOTICE file for details.

Created By

If you like this, follow @lancestout on Twitter.

12.20.0

3 months ago

12.19.1

4 months ago

12.19.0

7 months ago

12.18.0

2 years ago

12.17.3

2 years ago

12.16.1

3 years ago

12.16.0

3 years ago

12.16.2

3 years ago

12.17.0

3 years ago

12.17.2

3 years ago

12.17.1

3 years ago

12.15.0

3 years ago

12.14.7

4 years ago

12.14.6

4 years ago

12.14.5

4 years ago

12.14.4

4 years ago

12.14.3

4 years ago

12.14.2

4 years ago

12.14.1

4 years ago

12.13.1

4 years ago

12.13.0

4 years ago

12.12.2

4 years ago

12.12.1

4 years ago

12.12.0

4 years ago

12.11.0

4 years ago

12.10.2

4 years ago

12.10.1

4 years ago

12.10.0

4 years ago

12.9.0

4 years ago

12.9.1

4 years ago

12.8.2

4 years ago

12.8.1

4 years ago

12.8.0

4 years ago

12.7.2

4 years ago

12.7.1

4 years ago

12.7.0

4 years ago

12.6.3

4 years ago

12.6.2

4 years ago

12.6.1

4 years ago

12.6.0

4 years ago

12.5.3

4 years ago

12.5.2

4 years ago

12.5.1

4 years ago

12.5.0

4 years ago

12.4.7

4 years ago

12.4.6

4 years ago

12.4.5

4 years ago

12.4.4

4 years ago

12.4.3

4 years ago

12.4.2

5 years ago

12.4.1

5 years ago

12.4.0

5 years ago

12.3.3

5 years ago

12.3.2

5 years ago

12.3.1

5 years ago

12.3.0

5 years ago

12.2.3

5 years ago

12.2.2

5 years ago

12.2.1

5 years ago

12.2.0

5 years ago

12.1.8

5 years ago

12.1.7

5 years ago

12.1.6

5 years ago

12.1.5

5 years ago

12.1.4

5 years ago

12.1.3

5 years ago

12.1.2

5 years ago

11.3.7

5 years ago

12.1.1

5 years ago

12.1.0

5 years ago

12.0.9

5 years ago

12.0.8

5 years ago

12.0.7

5 years ago

12.0.5

5 years ago

12.0.4

5 years ago

12.0.3

5 years ago

12.0.2

5 years ago

12.0.1

5 years ago

12.0.0

5 years ago

12.0.0-beta.1

5 years ago

12.0.0-beta.0

5 years ago

11.3.6

5 years ago

11.3.5

5 years ago

11.3.4

5 years ago

11.3.2

5 years ago

11.3.1

5 years ago

11.3.0

5 years ago

11.2.1

5 years ago

11.2.0

5 years ago

11.1.1

5 years ago

11.0.1

5 years ago

11.0.0

5 years ago

0.0.1

11 years ago