A neat command-line application to demonstrate TypeScript syntax.
Fizz buzz is a group word game for children to teach them about division. Players take turns to count incrementally, with the following rules:
- For numbers divisible by
3, sayfizz. - For numbers divisible by
5, saybuzz. - For numbers is divisible by both, say
fizzbuzz. - For other numbers, say the number.
1
2
fizz
4
buzz
fizz
7
8
fizz
10
11
fizz
13
14
fizzbuzz
- Clone the repository and
cdinto the directory. - Run
npm installto install node packages. - Run
tscto generatedist/*.jsfiles. - Run
npm run-script fizzbuzzwith a numeric argument;npm run-script fizzbuzz 15.
To deploy the project on a dockerized environment,
- Clone this repository and
cdinto the directory. - Run
docker compose up -d. - Run
make ssh.
Now you can run the application as mentioned in the Usage section.