0.13.1 • Published 2 years ago

@xmpp/uri v0.13.1

Weekly downloads
38
License
ISC
Repository
github
Last release
2 years ago

URI

XMPP URIs for JavaScript

Only parsing is supported at the moment.

Install

npm install @xmpp/uri

Usage

const URI = require('@xmpp/uri')

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

0.13.1

2 years ago

0.13.0

3 years ago

0.12.1

3 years ago

0.12.0

3 years ago

0.11.0

4 years ago

0.10.0

4 years ago

0.9.2

4 years ago

0.9.0

4 years ago

0.8.0

5 years ago

0.7.4

5 years ago

0.7.0

5 years ago

0.6.0

5 years ago

0.5.0

6 years ago

0.3.0

7 years ago

0.2.0

7 years ago

0.0.1

7 years ago

0.0.0

7 years ago