Command-line typing test, built using Bubble Tea framework
You need to have Go installed (https://go.dev/doc/install)
Create and enter the directory where project will be cloned:
$ mkdir typefast
$ cd typefast
Clone typefast:
$ git clone https://github.com/wdmiz/typefast
On Linux or Mac:
$ go build
$ ./typefast <flags...>
On Windows:
$ go build
$ .\typefast.exe <flags...>
Alternatively you can run without building (for example, to quickly test changes in code)
Inside directory where project was cloned, run:
$ go run . <flags...>
-wordshow many words should test consist of (default:100)-dictwill randomly choose words from this file-textif specified it will use text from this file as test text (-wordsand-dictwill be ignored)
Using README.md as dictionary, test length 60 words
$ ./typefast -dict README.md -words 60
Using README.md as test text
$ ./typefast -text README.md