How to Build a Web App with and without Rails Libraries
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# mirth.rb | |
# HTTP Requests: | |
# Break down HTTP request from the client | |
# and displays it | |
require 'socket' | |
server = TCPServer.new(1337) | |
loop do | |
client = server.accept | |
request_line = client.readline | |
puts "The HTTP request line looks like this:" | |
puts request_line | |
method_token, target, version_number = request_line.split | |
response_body = "✅ Received a #{method_token} request to #{target} with #{version_number}" | |
client.puts response_body | |
client.close | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment