a web app for playing just one, a cooperative party word game. hosted on https://just1.herokuapp.com/.
in each round, the guesser is trying to guess a word. everyone not guessing writes a single-word clue. then everyone compares clues, and hides clues that are the same. they show the clues to the guesser, who then tries to guess the word.
you can join room example by going directly to https://just1.herokuapp.com/room/example. if you don’t type a name when prompted, you spectate the room.
inspired by betaveros/castlefall, the app relies on the players to trust each other. so anyone can kick anyone else, including themselves. joining a room with the same name as an existing player kicks and replaces them, so you can reconnect as yourself if you disconnect.
server uses express and socket.io; frontend uses react.
run npm install
. development runs on two servers, one for the socket, and one for the client. running npm start
starts the socket server, and running npm run hotloader
starts the client server.
you will need wordlists, see wordlist.js. it imports a bunch of json
files, which should contain a single object with the key words
, with its value as an array of a list of strings to be words.
- sanitize names, clues, and guesses?
- "add clues" feature after a round ends?
- add a timer? or like, a timer that counts up, resetting every phase?