sockjs-client
sockjs-client copied to clipboard
WebSocket emulation - Javascript client
Hi, I'm using sockjs with rxStomp to open a WebSocket and download some Realtime files. in an unexpected behavior ,some times I'm getting failed: WebSocket is closed before the connection...
I am wondering whether your library support IPv6 address with zone id like fe80::1642:fcff:fee9:434b%lanbr0 ? I searched your document but could not find information regarding IPv6 address with zone id....
Added ESBuild to fix optimization bailouts on TypeScript frameworks like Angular.
使用sockjs-client 版本1.0.0时 报错Cannot read properties of null (reading 'transportName') 暂时没找到原因 也不知道是什么原因引起的
Angular has the warn message with this package: "CommonJS or AMD dependencies can cause optimization bailouts". We need package this project as ESModule (instead of CommonJS Module). It can be...
I can find that noCredentials flag with option does set withCredential true/false but it doesn't work. Are there any other ways or documentation will help me to set the parameter...
Chrome Firefox and Edge have moved to not allow document.domain modification. Example article from chrome: https://developer.chrome.com/blog/immutable-document-domain/ This is currently used in sockjs-client/lib/utils/iframe.js: https://github.com/sockjs/sockjs-client/blob/63b845fa702e86c2141caeaf2c291ff7dc9372e2/lib/utils/iframe.js#L153-L157 This will no longer work
Hi I am using [email protected] with [email protected] in react application. const socket = new SockJS(url); const stompClient = Stomp.over(socket); const httpHeaders = { 'Authorization': 'Bearer ' + authToken, }; stompClient.connect(httpHeaders,...