Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/martishin/react-golang-chat
- Owner: martishin
- Created: 2023-11-23T01:32:27.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-25T01:36:59.000Z (3 months ago)
- Last Synced: 2024-11-25T02:25:14.228Z (3 months ago)
- Topics: example-project, go, golang, gorilla-websocket, reactjs, reactjs-golang, tailwindcss, typescript, websocket
- Language: TypeScript
- Homepage: https://chat.martishin.com/
- Size: 17.7 MB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)