-
Hello, we are trying to migrate our application to use xmpp.js at the moment. Unfortunately, it appears stream management is not working properly on our XMPP server and we would like to disable it in the meantime until this is fixed server-side. Is there some way to easily disable stream management in xmpp.js? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can simply build your own client by copy pasting the content of https://github.com/xmppjs/xmpp.js/blob/main/packages/client/index.js or https://github.com/xmppjs/xmpp.js/blob/main/packages/client/browser.js and removing what you don't want/need. |
Beta Was this translation helpful? Give feedback.
You can simply build your own client by copy pasting the content of
https://github.com/xmppjs/xmpp.js/blob/main/packages/client/index.js or https://github.com/xmppjs/xmpp.js/blob/main/packages/client/browser.js and removing what you don't want/need.