// Just says hello to the server. No personal information is stored, this // just tells me when someone real (or a bot running JS) visits my site. function hello(){ fetch(`/hello/${encodeURIComponent(location.pathname)}`) } window.onload = hello