DEV Community

Discussion on: Building a 30 line HTTP server in Ruby

Collapse
 
jkreeftmeijer profile image
Jeff Kreeftmeijer • Edited

Thanks Ben! The great thing about good software is that the implementation is often quite understandable. Rack's magic is its minimal response-triplet based interface, which allows the web server to focus on what it's best at; decoding and encoding HTTP requests and responses. :)