fiber icon indicating copy to clipboard operation
fiber copied to clipboard

🚀 [Feature]: WebSocket (Socket.io) support in proxy middleware

Open petuxodev opened this issue 1 year ago • 4 comments

Feature Description

Support of websockets in proxy middleware.

Additional Context (optional)

No response

Code Snippet (optional)

package main

import "github.com/gofiber/fiber/v2"
import "log"

func main() {
  app := fiber.New()

  // An example to describe the feature

  log.Fatal(app.Listen(":3000"))
}

Checklist:

  • [X] I agree to follow Fiber's Code of Conduct.
  • [X] I have checked for existing issues that describe my suggestion prior to opening this one.
  • [X] I understand that improperly formatted feature requests may be closed without explanation.

petuxodev avatar Jul 12 '22 08:07 petuxodev

Thanks for opening your first issue here! 🎉 Be sure to follow the issue template! If you need help or want to chat with us, join us on Discord https://gofiber.io/discord

welcome[bot] avatar Jul 12 '22 08:07 welcome[bot]

@petuxodev there is a own middleware https://github.com/gofiber/websocket

ReneWerner87 avatar Jul 12 '22 10:07 ReneWerner87

https://github.com/googollee/go-socket.io/issues/127

ReneWerner87 avatar Jul 12 '22 10:07 ReneWerner87

googollee/go-socket.io#127

I'm about proxying of websockets.

petuxodev avatar Jul 12 '22 11:07 petuxodev