https://github.com/code100x/chess
A multiplayer chess platform
https://github.com/code100x/chess
Last synced: about 1 year ago
JSON representation
A multiplayer chess platform
- Host: GitHub
- URL: https://github.com/code100x/chess
- Owner: code100x
- Created: 2024-04-13T21:57:03.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-05T07:01:57.000Z (almost 2 years ago)
- Last Synced: 2025-04-11T15:57:05.817Z (about 1 year ago)
- Language: TypeScript
- Homepage: https://chess.100xdevs.com/
- Size: 1.18 MB
- Stars: 1,659
- Watchers: 12
- Forks: 608
- Open Issues: 154
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Chess
Building a platform where people can
1. Sign up
2. Create a new match/get connected to an existing match
3. During the match, let users play moves
4. Have a rating system that goes up and down similar to standard chess rating
## Tech stack
Let's keep it simple
1. React for Frontend
2. Node.js for Backend
3. Typescript as the language
4. Separate Websocket servers for handling real time games
5. Redis for storing all moves of a game in a queue
## Setting it up locally
- Clone the repo
- Copy over .env.example over to .env everywhere
- Update .env
- Postgres DB Credentials
- Github/Google Auth credentials
- npm install
- Start ws server
- cd apps/ws
- npm run dev
- Start Backend
- cd apps/backend
- npm run dev
- Start frontend
- cd apps/frontend
- npm run dev