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

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.

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
```