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

socket.io library for golang, a realtime application framework.

Results 144 go-socket.io issues
Sort by recently updated
recently updated
newest added

i use [email protected] in go module,but it not good work ,but,i change go path ,it' good work, In short, I mean, the same library, the same code, under two different...

question

**Describe the bug** server.OnEvent("signaling", "Register”, func(so socketio.Conn, msg interface{}) I use the method of OnEvent like above,.but it always happen this: meet error:websocket: write closed I try to add heart...

bug

**Describe the bug** running the demo code binary apps on centos and osx platforms in the browser using socket.io js make a connection, a runtime error shows up. when using...

bug

``` type session struct { params base.ConnParameters manager *manager closeOnce sync.Once context interface{} upgradeLocker sync.RWMutex transport string conn base.Conn } ```

bug

When i do something which takes a long time in. `OnEvent`. It will case a `panic: concurrent write to websocket connection` Here is my server code: ```Go server.OnEvent("/", "test", func(s...

bug

**Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Brief code to reproduce the behavior. **Expected behavior** A clear and concise description of what...

bug

Hi i'am implementing a game server with this awesome library. Now i'am testing my game and if a client with very bad internet connection joined my game after a while...

question

The Node.JS version of socket.io has a concept of a store, to keep track of connections: this allows it to work in a load-balanced setup. More info here: https://github.com/Automattic/socket.io/wiki/Configuring-Socket.IO#server Is...

new-feature

Is it possible to count users in a room? The `socket.io` has `io.sockets.sockets.length`. I'm unable to access `namespace` in `go-socket.io`, because it is not exported. http://stackoverflow.com/questions/9352549/getting-how-many-people-are-in-a-chat-room-in-socket-io

question

We caught an interesting bug: the channel name area intersects with the connection name area. Accordingly, if you call channels 1,2,3, etc., then such a connection is connected to them....