Home > Article > Backend Development > How to implement socket.io server using echo server in Golang
I want to initialize the echo server
app := echo.New() app.POST("/register", handlers.Register) app.Start(":5000")
Then implement the socket.io server on the same port.
I tried to do dual servers, but it doesn't seem to work.
Check this example from repo
The above is the detailed content of How to implement socket.io server using echo server in Golang. For more information, please follow other related articles on the PHP Chinese website!