Small text-based online game — a HAL mesh module
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
jschoubben eab696ce42 Merge pull request 'fix(db): grant app user permissions on players and games tables' (#5) from fix/db-permissions into main 1 mês atrás
migrations fix(db): grant app user permissions on players and games tables 1 mês atrás
.gitignore feat(txt-game): initial module scaffold 1 mês atrás
Dockerfile feat(scores): persist scores in Postgres, add scoreboard UI 1 mês atrás
README.md feat(txt-game): initial module scaffold 1 mês atrás
docker-compose.yml feat(scores): persist scores in Postgres, add scoreboard UI 1 mês atrás
module.yml feat(db): provision Postgres and add score schema migration 1 mês atrás
package-lock.json feat(scores): persist scores in Postgres, add scoreboard UI 1 mês atrás
package.json feat(scores): persist scores in Postgres, add scoreboard UI 1 mês atrás
server.mjs feat(scores): persist scores in Postgres, add scoreboard UI 1 mês atrás

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.