gofiber / fiber

⚡️ Express inspired web framework written in Go
https://gofiber.io
MIT License
33.85k stars 1.66k forks source link

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

Open petuxodev opened 2 years ago

petuxodev commented 2 years ago

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:

welcome[bot] commented 2 years ago

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

ReneWerner87 commented 2 years ago

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

ReneWerner87 commented 2 years ago

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

petuxodev commented 2 years ago

googollee/go-socket.io#127

I'm about proxying of websockets.