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

https://github.com/antelman107/go-simple-tcp-chat

Simple TCP chat on GO
https://github.com/antelman107/go-simple-tcp-chat

broadcast chat golang syncmap tcp tcp-chat

Last synced: 3 months ago
JSON representation

Simple TCP chat on GO

Awesome Lists containing this project

README

          

### Simple TCP chat
Simple tcp server that accepts connections and resend
any incoming messages to all connected clients.
sync.Map is used to store connections.
Further implementation details in the article - https://golangforall.com/en/post/golang-tcp-server-chat/.