Skip to content
This repository has been archived by the owner on Apr 5, 2022. It is now read-only.
/ stanza Public archive
forked from legastero/stanza

Modern XMPP in the browser, with a JSON API

License

Notifications You must be signed in to change notification settings

lingbe/stanza

 
 

Repository files navigation

StanzaJS

Modern XMPP, with a JSON API.


npm build status chat

What is this?

StanzaJS is a 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: '[email protected]',
    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:https://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: [email protected] / Logs

Related Modules

These are related modules that form part of StanzaJS:

Name Description Source
stanza-shims Runtime shims used by StanzaJS for node, browsers, and React Native. Source

Recommended Modules

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

Name Description Source
staydown Render helper that keeps an element scrolled to the bottom based on user intent. Source
webrtc-adapter Shims 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.

About

Modern XMPP in the browser, with a JSON API

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 99.9%
  • JavaScript 0.1%