Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 689 Bytes

README.md

File metadata and controls

40 lines (27 loc) · 689 Bytes

Golang WebSocket Chat App

This is a simple chat application written in Golang using WebSockets. It allows multiple users to chat with each other in real-time.

Features

  • Real-time messaging using WebSockets
  • Clean and simple user interface
  • Support for multiple users

Chat Web

Alt text

Code Log

Alt text


Getting Started

To run the server:

go run main.go

To package the server:

go build ./cmd/web/*.go

Using docker

docker build --tag go-chat:1 .
docker run -p 5000:5000 go-chat:1