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

**Describe the bug** I'm trying to test socket.io with GoLang v1.7.0. The client is making the HTTP request to establish the connection but it's failing. Upon inspecting the http request...

bug

just like this: ` io.use((socket, next) => { const token = socket.handshake.auth.token; // ... }); ` Is there a example for golang? Thank you!

Bumps [github.com/gorilla/websocket](https://github.com/gorilla/websocket) from 1.5.0 to 1.5.1. Release notes Sourced from github.com/gorilla/websocket's releases. Release v1.5.1 What's Changed Add check for Sec-WebSocket-Key header by @​hirasawayuki in gorilla/websocket#752 Changed the method name UnderlyingConn...

dependencies
go

v1.6.1 and above: v1.6.2, v1.6.3, v1.7.0, v1.8.0-rc.1 opts := &engineio.Options{ PingTimeout: 10 * time.Second, PingInterval: 1 * time.Second, } server := socketio.NewServer(opts) server.OnConnect("/", func(s socketio.Conn) error { params, _ :=...

This version of socket.io golang is quite outdated compared to the nodejs lib. Anyone willing to upgrade to be compatible with client version 3 and up? I'm willing to collaborate....

**Describe the bug** When using the go-socket.io client, the client side handlers have to be []string instead of string as mentioned in the example. Note: the client also seems to...

bug

Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. Release notes Sourced from actions/checkout's releases. v4.0.0 What's Changed Update default runtime to node20 by @​takost in actions/checkout#1436 Support fetching without the --progress option...

dependencies
github_actions

This feature lets a server or client handle events with wildcards, e.g. ```go server.OnEvent("/", "*", func(s socketio.Conn, e socketio.EventRequest, msg interface{}) interface{} { ``` would handle all events in the...

how to receive binary message?