Small text-based online game — a HAL mesh module
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
jschoubben eab696ce42 Merge pull request 'fix(db): grant app user permissions on players and games tables' (#5) from fix/db-permissions into main vor 1 Monat
migrations fix(db): grant app user permissions on players and games tables vor 1 Monat
.gitignore feat(txt-game): initial module scaffold vor 1 Monat
Dockerfile feat(scores): persist scores in Postgres, add scoreboard UI vor 1 Monat
README.md feat(txt-game): initial module scaffold vor 1 Monat
docker-compose.yml feat(scores): persist scores in Postgres, add scoreboard UI vor 1 Monat
module.yml feat(db): provision Postgres and add score schema migration vor 1 Monat
package-lock.json feat(scores): persist scores in Postgres, add scoreboard UI vor 1 Monat
package.json feat(scores): persist scores in Postgres, add scoreboard UI vor 1 Monat
server.mjs feat(scores): persist scores in Postgres, add scoreboard UI vor 1 Monat

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.