How fast can an HTTP server in Node run if we spawn a process for every request? import{spawn}from"node:child_process";importhttpfrom"node:http";http.createServer((req,res)=>spawn("echo",["hi"]).stdout.pipe(res)).listen(8001); You should avoid spawning a new process for every HTTP request if at all possible. Creating a new process or thread is expensive and could easily become your core bottleneck. At Val Town there are many request types where we spawn a new process to handle the request. Wh...