This repository has moved to a new URL, directly under Fiber's Contrib Repo. This move is part of my effort to enhance the project and offer you better features and support.
Here: https://github.com/gofiber/contrib/blob/main/socketio/README.md
If you wish to switch directly to the new repository, ensure you update your code accordingly.
From this:
import (
"github.com/antoniodipinto/ikisocket"
"github.com/gofiber/contrib/websocket"
"github.com/gofiber/fiber/v2"
)
ikisocket.On("EVENT_NAME", func(ep *ikisocket.EventPayload) {})
ikisocket.New(func(kws *ikisocket.Websocket){})
To this
import (
"github.com/gofiber/contrib/socketio"
"github.com/gofiber/contrib/websocket"
"github.com/gofiber/fiber/v2"
)
socketio.On("EVENT_NAME", func(ep *socketio.EventPayload) {})
socketio.New(func(kws *socketio.Websocket){})