- Go play the real Wordle here
- Read all about Werewolf, the social deduction game, here
- Read the story behind it here
- Weredle is a fork of https://github.com/hannahcode/wordle by @hannahcode
Inspiration: This game is an open source clone of the immensely popular online word guessing game Wordle, with a twist. One of the tiles is a Werewolf and can't be trusted. For each guess you make, you'll also guess which tile is the Werewolf. If you guess right, the Werewolf tile will tell the truth for the rest of the game. If you guess the correct word before finding the Werewolf, the Werewolf is revealed immediately and you win!
Design Decisions: Check out the Readme at https://github.com/hannahcode/wordle by @hannahcode for all the design details. I just built on top of an already great project. 😄
To Run Locally: Clone the repository and perform the following command line actions:
$ cd weredle
$ npm install
$ npm run start
To build/run docker container:
$ docker build -t weredle .
$ docker run -d -p 3000:3000 weredle
open http://localhost:3000 in browser.