dmcgi is live
Hello. Add ?name=you to the URL, or sign in with BYOND.
This request
- world spawned and page generated server side in
58 ms
- method
GET
- path
- your IP
216.73.216.213
- visits (cookie)
2
- user agent
Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
How that timing is measured
- the CGI bridge starts a timer, runs DreamDaemon in CGI mode for this one request, and stops the timer when the world exits
- the measured value replaces a placeholder token in this page before it is sent to you
- it covers process spawn, engine init, world boot, Handle, and exit. DM timers cannot see most of that, because it all happens before any DM code runs
- hosting with the ultrasafe flag keeps this near 15 ms. The safe flag adds a fixed one second per request
What this proves
- the request reached a DM world running as CGI
- query params parse (name echoes back, safely encoded)
- cookies round trip (the counter increments) with HttpOnly, SameSite, and Secure
- modern security headers are emitted (view them in DevTools, Network tab)