socket.io-client icon indicating copy to clipboard operation
socket.io-client copied to clipboard

Realtime application framework (client)

Results 93 socket.io-client issues
Sort by recently updated
recently updated
newest added

I'm trying to find a solution to avoid multiple connections over multiple open tabs. Instead, I'ld like to share the connection between them (especially since users tend to have up...

enhancement

*Note*: the `socket.io.js` file is the generated output of `make socket.io.js`, and should not be manually modified. ### The kind of change this PR does introduce * [ ] a...

The connection to the socket works, because here is my code (React): ``` socket.current = io("www.ohezo.com", { auth: { id } }); socket.current.on("open", () => { console.log("It worked"); } ```...

bug

In my testing I found that latest socket.io client can disconnect with ping timeout even if it is spammed with incoming packets (a lot of network activity). I found that...

Using [RxJS](https://github.com/ReactiveX/rxjs) instead of writing: ``` socket.on('connection', () => { ... }) ``` it was possible to create an observable like so: ``` const connection$ = fromEvent(socket, 'connection'); ``` This...

bug

In the following code server side: ``` io.of('/test').use(function(socket, next){ console.log("Authenticating...") //next(); }); ``` A socket.io connecting to the /test namespace will never connect (obviously), but it will never either get...

bug

**Describe the bug** My project is in React JS. In that socket is working fine. Some days before the logs were showing, but now stopped showing in ws tab of...

bug

I have implemented a socket in my chat application and I have implemented room subscription on one-to-one messages but unfortunately, it won't work for android apps but it works fine...

bug

Fixes browser module resolution in webpack. See issue https://github.com/socketio/socket.io-client/issues/1457. *Note*: the `socket.io.js` file is the generated output of `make socket.io.js`, and should not be manually modified. ### The kind of...

**Describe the bug** When calling Manager.socket('/someNamespace') a second time after already having called it before, it will re-use the same socket. If that socket has been manually disconnected using Socket.disconnect(),...

bug