file_slow_load.sjs (259B)
1 "use strict"; 2 3 function handleRequest(request, response) { 4 response.processAsync(); 5 response.setHeader("Content-Type", "text/html"); 6 response.write("<!doctype html>Loading... "); 7 // We don't block on this, so it's fine to never finish the response. 8 }