A simple website that tracks and displays the number of visits from different IP addresses.
backend/ - Server-side code
index.ts - Main HTTP handler using Honodatabase.ts - SQLite database setup and queriesfrontend/ - Client-side code
index.html - Main webpageWhen a user visits the site, their IP address is recorded in the SQLite database. If the IP already exists, its visit counter is incremented. The page displays a table of all IP addresses and their visit counts.