Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/martishin/react-golang-chat

Real-time chat application with user authentication. Built using React.js, Go and WebSockets
https://github.com/martishin/react-golang-chat

example-project go golang gorilla-websocket reactjs reactjs-golang tailwindcss typescript websocket

Last synced: about 1 month ago
JSON representation

Real-time chat application with user authentication. Built using React.js, Go and WebSockets

Awesome Lists containing this project

README

        

# React Go Chat
Real-time chat application with user authentication. Built using React.js, Go and WebSocket protocol.
You can check the live version [here](https://chat.martishin.com/)!

## Running Locally
### Server
* Navigate to the `server` folder
* Install dependencies: `go mod download`
* Start the server: `go run main.go`
### Client
* Navigate to the `client` folder
* Install dependencies `npm install`
* Start the server: `npm run dev`

## Features
* User registration
* Real-time messaging between users
* Messages include autor username

## Technologies Used
* [Go](https://go.dev/)
* [Gorilla web toolkit](https://gorilla.github.io/)
* [Docker](https://www.docker.com/)
* [Typescript](https://www.typescriptlang.org/)
* [Vite](https://vitejs.dev/)
* [React.js](https://react.dev/)
* [Tailwind CSS](https://tailwindcss.com/)
* [Jest](https://jestjs.io/)
* [WebSocket](https://developer.mozilla.org/en-US/docs/Web/API/WebSocket)