2025-11-05 17:04:23 -03:00
..
2025-11-05 17:04:23 -03:00
2025-11-05 17:04:23 -03:00
2025-11-05 17:04:23 -03:00
2025-11-05 17:04:23 -03:00
2025-11-05 17:04:23 -03:00

URI

XMPP URIs for JavaScript

Only parsing is supported at the moment.

Install

npm install @xmpp/uri

Usage

import { parse } from "@xmpp/uri";

parse('xmpp://guest@example.com/support@example.com/truc?message;subject=Hello%20World');

{
  authority: jid('guest@example.com'), // see https://github.com/xmppjs/xmpp.js/tree/main/packages/jid
  path: jid('support@example.com/truc'), // see https://github.com/xmppjs/xmpp.js/tree/main/packages/jid
  query: {
    type: 'message',
    params: {
      subject: 'Hello World',
    },
  },
}

References