xmpp-connection-discovery

Use RFC6120 and XEP-0156 to get XMPP connection services.

Usage no npm install needed!

<script type="module">
  import xmppConnectionDiscovery from 'https://cdn.skypack.dev/xmpp-connection-discovery';
</script>

README

npm version

XMPP connection discovery

:mag: Use RFC6120 and XEP-0156 to discover XMPP connection services.

Features

How to use

Install this module as usual with yarn add xmpp-connection-discovery and import the script:

const discoverXMPPServices = require('xmpp-connection-discovery');

Discover TCP, websocket and BOSH services like this:

discoverXMPPServices('your.domain').then((services) => {
   console.log(services);

   /* { tcp: [ { server: 'xmpp.your.domain', port: 5222 } ],
  xbosh: [ { server: 'https://xmpp.your.domain:5280/http-bind' } ] } */
})