https://github.com/shankytiwari/group-chat-implementation-in-golang-using-websocket
How to implement Group Chat in GoLang using websocket
https://github.com/shankytiwari/group-chat-implementation-in-golang-using-websocket
golang-chat golang-group-chat golang-socket golang-websocket-server group-chat webscoket
Last synced: 25 days ago
JSON representation
How to implement Group Chat in GoLang using websocket
- Host: GitHub
- URL: https://github.com/shankytiwari/group-chat-implementation-in-golang-using-websocket
- Owner: ShankyTiwari
- Created: 2020-05-02T07:46:06.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-17T04:15:02.000Z (almost 5 years ago)
- Last Synced: 2025-04-30T13:44:41.484Z (25 days ago)
- Topics: golang-chat, golang-group-chat, golang-socket, golang-websocket-server, group-chat, webscoket
- Language: Go
- Homepage: https://www.codershood.info/2020/06/17/build-a-realtime-group-chat-app-in-golang-using-websockets/
- Size: 4 MB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Group Chat implementation In GoLang using websocket
How to implement Group Chat in GoLang using websocket
## Installtion
Below command will Install all the dependencies recursively.
```bash
go get -d ./...
```## Starting the GO server
Use the below command to create executable and the run executable.
```bash
go build
```## Explanation and Blog Post
I have written a complete article on this application. For more details and Code explanation, visit this link
[https://www.codershood.info/2020/06/17/build-a-realtime-group-chat-app-in-golang-using-websockets/](https://www.codershood.info/2020/06/17/build-a-realtime-group-chat-app-in-golang-using-websockets/)