gofiber/websocket — explained in plain English
Analysis updated 2026-07-25 · repo last pushed 2023-05-24
Add live chat to a Fiber web app
Build a dashboard with instant stock price updates
Create collaborative real-time tools
Send push notifications to users without page refreshes
| gofiber/websocket | efforg/yaya | programmersd21/flow | |
|---|---|---|---|
| Stars | 287 | 303 | 263 |
| Language | Go | Go | Go |
| Last pushed | 2023-05-24 | 2023-12-27 | — |
| Maintenance | Dormant | Dormant | — |
| Setup difficulty | easy | hard | easy |
| Complexity | 2/5 | 4/5 | 2/5 |
| Audience | developer | ops devops | developer |
Figures from each repo's GitHub metadata at analysis time.
Package is deprecated, new projects should use the version in Fiber Contrib instead.
This repository, gofiber/websocket, is a package that adds WebSocket support to web applications built with the Fiber framework. WebSockets are a technology that lets a server and a user's browser maintain an open, two-way connection. This is what makes real-time features possible, like live chat, multiplayer game updates, or instant notifications, where information needs to flow back and forth without the user constantly refreshing the page. Normally, the web works through a series of separate requests, a user asks for a page, the server sends it, and the connection closes. WebSockets skip that cycle by keeping the connection open so the server can push new information to the user the moment it happens. This particular package was designed to make that technology easy to plug into apps using Fiber, a popular tool for building web services in the Go programming language. The people who would use this are developers building real-time features into a Fiber-based application. For example, a startup building a live customer support chat widget, a team creating a dashboard that updates stock prices instantly, or anyone making a collaborative tool would rely on this kind of underlying connection. The important thing to know is that this repository is deprecated, meaning it is no longer maintained or updated. The functionality still exists, but it has been moved into a central community collection called Fiber Contrib. Anyone starting a new project should use the version located there instead, as that is where active development and fixes now happen.
A Go package that adds real-time WebSocket support to Fiber web apps, enabling live chat, instant updates, and push notifications. It is deprecated and has moved to Fiber Contrib.
Mainly Go. The stack also includes Go, Fiber, WebSockets.
Dormant — no commits in 2+ years (last push 2023-05-24).
Setup difficulty is rated easy, with roughly 5min to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Verify against the repo before relying on details.