Server/client wordle that supports multiple-player (similar to wewordle) and host cheating (similar to absurdle).
This is a multiplayer version of the popular Wordle game, where two players can play together and see each other's progress in real-time. Server is built using Node.js, Express, SQLite, and ws. Client is built using React.js.
cd server
npm install
cd client
npm install
npm start
- Run server and two clients to have two players
- Player 1 has to set a list of words and number of guesses
- Players have to guess a word from list of words within limited number of guesses
- Player 1 always starts first
- First to guess the word is winner
Output schema:
- '0' stands for Hit (the letter is in the correct spot of answer)
- '?' stands for Present (the letter is in the answer but wrong spot)
- '_' stands for Miss (the letter is not in the answer)