Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 921 Bytes

README.md

File metadata and controls

25 lines (20 loc) · 921 Bytes

npm version

XMPP connection discovery

🔍 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' } ] } */
})