Web application that allows you to browse or search through database of Czechia TLD (.cz
) domains. The database contains bulk of historically registered TLDs since 1990s. The application can also request WHOIS data and Internet Archive's Wayback machine archival link.
This project was created with main goal being simplicity. Even if it's written in Typescript, the front-end is old-fashioned HTML (nunjucks) templates. The database is just sqlite
file that contains all the entries making the deployment really straightforward. The design is intentional and is a throwback to mid-1990s web, even the icons were sourced from CD-ROM containing clip-art graphics.
I wanted to have some kind of simple web application that I could experiment with, hosting it on own VPS and setting it all up. I was interested in trying out Typescript-based web framework with server-side rendered HTML, without using any client-side Javascript - the design and type of the application does not really need it.
The project was originally written for Deno runtime using Fresh web framework (see git history) but I ultimately decided to switch to fastify web framework. The reasons at the time of writing the application (end of 2022 / early 2023) were:
Overall it was good experience rewriting the project and comparing the pros and cons. I think Fresh framework was otherwise very cool and I really appreciate its islands architecture ("ship HTML first"), I also prefer Deno's dependency management over centralized NPM registry.