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

is there is any way to use the is library to connect as socket-io client for my nodejs based socketio server which is using latest version(v4.5) ?

bug

I am sending a packet using Websockets like this ```js socket.send('452-["binary",{"_placeholder":true,"num":0},{"_placeholder":true,"num":1}]'); socket.send(Uint8Array.from([1, 2, 3])); socket.send(Uint8Array.from([4, 5, 6])); ``` How will the handler function be in golang?

Hi, Which version number does the Android client need to use the link below? https://mvnrepository.com/artifact/io.socket/socket.io-client

How to handle like this: socket.to(personId).emit('private message', { username: socket.username, message: data });

server: gosocketio version v1.6.2 websocket info: client1: v-2 "WebSocket++/0.8.2" /socket.io/?EIO=4&transport=websocket client2: v-2 "WebSocket++/0.5.1" /socket.io/?EIO=4&transport=websocket the client1(latest socketio-cpp) will reconnect every minute because of the 60s ping-pong timeout, and do not...

Hi, I wasn't sure if there is a bug or a place I missed. ` options := &engineio.Options{ PingTimeout: 30 * time.Second, PingInterval: 10 * time.Second, } server := socketio.NewServer(options)...

When I am emitting byte array on socketio Server. Client is receiving base64 string. how to send binary message?

I am using `go-socket.io` in the backend When I implement socket in the front side it show error `Reason: CORS header ‘Access-Control-Allow-Origin’ missing`

报错 root ('/') doesn't have a namespace handle 如何 服务端的 空间是 room 客户端在域名后面/room 就报错

server.Remove undefined (type *socketio.Server has no field or method Remove) line 44 of Base example with using std net/http ==> https://github.com/googollee/go-socket.io/tree/master/_examples server.Remove(s.ID()) **Environment (please complete the following information):** - Go...

bug