Small text-based online game — a HAL mesh module
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
jschoubben 8c3c95916d Merge pull request 'feat(scores): persist scores in Postgres, add scoreboard UI' (#4) from feat/score-persistence into main hace 1 mes
migrations feat(db): provision Postgres and add score schema migration hace 1 mes
.gitignore feat(txt-game): initial module scaffold hace 1 mes
Dockerfile feat(scores): persist scores in Postgres, add scoreboard UI hace 1 mes
README.md feat(txt-game): initial module scaffold hace 1 mes
docker-compose.yml feat(scores): persist scores in Postgres, add scoreboard UI hace 1 mes
module.yml feat(db): provision Postgres and add score schema migration hace 1 mes
package-lock.json feat(scores): persist scores in Postgres, add scoreboard UI hace 1 mes
package.json feat(scores): persist scores in Postgres, add scoreboard UI hace 1 mes
server.mjs feat(scores): persist scores in Postgres, add scoreboard UI hace 1 mes

README.md

txt-game

A small text-based number guessing game running as a HAL mesh module. The server picks a random number between 1 and 100, and you have 7 attempts to guess it — after each guess you receive a directional hint (too high / too low) and a temperature clue (cold → warm → hot) to help you zero in. The game runs entirely in the browser via HTML forms: no JavaScript required on the client side. Each player session is tracked by a lightweight cookie so multiple people can play concurrently without interference.