What it is
Wireframe is a browser arcade game. You fly a small ship around a wrapping field, break the contacts into smaller ones, and try not to run into anything. Clear the field and the next wave arrives with a little more to deal with.
How it's built
The whole game is plain JavaScript drawing to a single canvas element. There is no framework, no build step and no bundler — the page loads one script and runs it. Shapes are generated at random when each wave spawns, so no two fields look quite alike.
The scoreboard is a small server process holding a WebSocket open to every browser currently on the page. It broadcasts the player count and the current top ten every few seconds. Scores live in memory only and reset whenever the process restarts, which is the honest answer to "is this leaderboard serious" — it isn't.
Privacy
No accounts, no cookies, no analytics. The only thing stored about you is a random display name kept in your own browser, so the scoreboard has something to label your entry with. Clear your site data and it's gone.