Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hydrogen602/boardgame_gleam
https://github.com/hydrogen602/boardgame_gleam
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hydrogen602/boardgame_gleam
- Owner: hydrogen602
- Created: 2024-07-23T01:19:37.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-07-31T03:47:54.000Z (5 months ago)
- Last Synced: 2024-08-01T04:47:35.034Z (5 months ago)
- Language: Gleam
- Size: 222 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# boardgame
My attempt to learn gleamFeatures
- Server can handle many games at once
- Networked: players can together over the internet
- Each game has a unique game token to make it easy to invite friends but keeps games private
- Players can reload the page without losing their seat in the game: game tokens and a unique player token are stored in localStorage
- Players can't play opponents piecesStart backend:
```bash
gleam run
```Start frontend
```bash
cd game-ui
npm start
```