https://github.com/alextanhongpin/go-websocket
A deeper look into websocket with golang
https://github.com/alextanhongpin/go-websocket
go golang websocket
Last synced: over 1 year ago
JSON representation
A deeper look into websocket with golang
- Host: GitHub
- URL: https://github.com/alextanhongpin/go-websocket
- Owner: alextanhongpin
- Created: 2019-03-22T11:03:24.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-06-24T02:25:53.000Z (about 7 years ago)
- Last Synced: 2025-01-29T21:51:39.014Z (over 1 year ago)
- Topics: go, golang, websocket
- Language: Go
- Size: 18.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# golang websocket
Designing the structure for scalable websocket in golang. This is actually a modification of the [chat example](https://github.com/gorilla/websocket/tree/master/examples/chat) from the `gorilla/websocket` repo.
There are some improvements that I want to add to the example:
- authentication/authorization using jwt token
- access control list for users (users can only send to their friends, for example)
- the same users can connect to multiple websockets
- handling for different message type
## Project
- [go-chat](https://github.com/alextanhongpin/go-chat.git)