2.1.0 • Published 5 years ago

jingle-stanza v2.1.0

Weekly downloads
352
License
MIT
Repository
github
Last release
5 years ago

#Jingle Stanza

Jingle Stanzas is a utility for using jxt to translate Jingle objects (from jingle.js) to and from xml stanzas similar to stanza.io, but for use with an xmpp library other than stanza.io. It is largely based on stanza.io, using the jxt definitions for stanzas created therein. Credit where it's due: stanza.io.

##Usage

jingleStanza = require('jingle-stanza');
jingle = new Jingle()

jingle.on('send', function(data) {
    var xml = jingleStanza.getXml(data);
    myXmppServer.send(xml);
});

myXmppServer.on('iq:set:jingle', function(stanza) {
    var data = jingleStanza.getData(stanza);
    jingle.process(data);
});
2.1.0

5 years ago

2.0.2

7 years ago

2.0.1

7 years ago

2.0.0

7 years ago

1.0.0

7 years ago

0.1.12

8 years ago

0.1.11

8 years ago

0.1.10

8 years ago

0.1.9

8 years ago

0.1.8

9 years ago

0.1.7

9 years ago

0.1.6

9 years ago

0.1.5

9 years ago

0.1.4

9 years ago

0.1.3

9 years ago

0.1.2

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago