Type out the list items as quickly as possible.
Play now! | The Game | Installation | Development
Typem ("Type them") is a time-based game where the player types out a list of items as quick as he can.
- 📚 Grow knowledge
- 🧠 Strengthen memorization skills
- ⌨️ Improve typing speed
- 🏆 Track past performance
While typing, the game automatically checks the answers, keeping track of the progress. The objective is to complete the list in the shortest time possible, testing both typing speed, knowledge, and memorization skills! Many built-in lists (including hints) are available, mostly geography-themed.
Try it now at typem.fjelloverflow.dev!
The projects runs in bun, a NodeJS compatible JavaScript environment.
git clone https://github.com/FjellOverflow/typem.git
cd typem
bun install
To install the recommended extensions for VSCode, open the Extensions tab and type @recommended
.
To start the dev-server run bun run dev
. All commands are called with bun run <command>
, the most common ones are:
dev
: start dev serverbuild
: build projecttest:unit
: run unit teststest:e2e:dev
: interactive e2e tests
For a full list of all commands, check the scripts
section in package.json
.
Warning
While the scripts can also be run with just bun <script>
, the build
commands needs to be run with bun run build
, as bun build
will instead use bun's built-in builder, instead of Vite.