An open API service indexing awesome lists of open source software.

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

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/)