https://github.com/iamber12/chat-app-with-websocket-and-go
Chat application built with Go, leveraging WebSockets for real-time bi-directional communication between clients and the server.
https://github.com/iamber12/chat-app-with-websocket-and-go
golang gorilla-websocket websocket
Last synced: 2 months ago
JSON representation
Chat application built with Go, leveraging WebSockets for real-time bi-directional communication between clients and the server.
- Host: GitHub
- URL: https://github.com/iamber12/chat-app-with-websocket-and-go
- Owner: iamber12
- Created: 2024-04-10T21:24:12.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-04-12T02:43:53.000Z (about 1 year ago)
- Last Synced: 2025-02-09T11:31:18.019Z (4 months ago)
- Topics: golang, gorilla-websocket, websocket
- Language: JavaScript
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Go Chat App
This is a real-time chat application built with Go, leveraging WebSockets for real-time bi-directional communication between clients and the server. The backend is powered by the Gorilla WebSocket package, and this simple yet powerful chat app demonstrates the basics of WebSockets in Go.
## Features
- Real-time messaging between multiple clients
- Simple and intuitive UI
- Easy deployment and minimal setup
- Cross-origin request support## Installation
To get started with the Go Chat App, follow these steps:
1. **Clone the repository:**
```bash
git clone https://github.com/iamber12/chat-app-with-websocket-and-go
cd chat-app-with-websocket-and-go
```2. **Run the server:**
```bash
go run main.go
```