@xmpp/uri
v0.14.0
Published
XMPP URIs for JavaScript
Readme
URI
XMPP URIs for JavaScript
Only parsing is supported at the moment.
Install
npm install @xmpp/uriUsage
import { parse } from "@xmpp/uri";
parse('xmpp://[email protected]/[email protected]/truc?message;subject=Hello%20World');
{
authority: jid('[email protected]'), // see https://github.com/xmppjs/xmpp.js/tree/main/packages/jid
path: jid('[email protected]/truc'), // see https://github.com/xmppjs/xmpp.js/tree/main/packages/jid
query: {
type: 'message',
params: {
subject: 'Hello World',
},
},
}