socketio icon indicating copy to clipboard operation
socketio copied to clipboard

A Modern SocketIO library for go

Results 12 socketio issues
Sort by recently updated
recently updated
newest added

![1713410632290](https://github.com/njones/socketio/assets/49542472/a5f95de7-7978-4aa5-9416-a585d0fcdcb5) ![1713410760870](https://github.com/njones/socketio/assets/49542472/7a351775-fc83-4a31-88f4-b8f0ab9ea104) The connection was immediately disconnected ![1713410703939](https://github.com/njones/socketio/assets/49542472/b556605b-5201-46d7-a86a-9f0a14cec7a9)

Hello github.com/njones/socketio users (and future users), As my commit history and issue updates indicate, I took an unannounced break from the project over the past year due to burnout. I...

announcement

how to close the connection in server side?

question
upcoming fix

Hi, It seems like concurrent handling of events on the same socket is not working. If a specific client sends multiple events to the server, events are only handled if...

question

Hello, I'm trying to use this package for different namespaces Here's the working version using `github.com/googollee/go-socket.io` ```go func main() { server := socketio.NewServer(&engineio.Options{ Transports: []transport.Transport{ &polling.Transport{ CheckOrigin: allowOriginFunc, }, &websocket.Transport{...

question

Hi Nika! So, I'm running some load tests here and noticed the server is not releasing allocated memory. Here is what I found: 1. After running the load test, I...

bug
enhancement

Hi, I noticed that sometimes when my application (which implements the socketio server) is running for some time, I experience a panic which states the following: ``` panic: send on...

bug

Currently the SocketID has a generated prefix from one source. In order to allow custom prefixes the ID should contain two parts the ID and the Prefix. This way there...

proposal

Upon exploring the library, I noticed that the OnDisconnect event does not trigger when closing the browser tab of an active socket connection. However calling `socket.disconnect()` on client side triggers...

bug
upcoming fix

# **Proposal:** Adding a SocketIO Client **Author(s):** Nika Jones (@njones) **Last updated:** 2022-Aug-27 ## Abstract The SocketIO library should have a client developed alongside the server. This will allow backend...

proposal