Skip to content

Instantly share code, notes, and snippets.

@ShopifyEng
Created March 25, 2021 15:32
Embed
What would you like to do?
How to Build a Web App with and without Rails Libraries
require 'socket'
server = TCPServer.new(1337)
loop do
client = server.accept
client.puts "What's your name?"
input = client.gets
puts "Received #{input.chomp} from a client socket on 1337"
client.puts "Hi, #{input.chomp}! You've successfully connected to the server socket."
puts "Closing client socket"
client.puts "Goodbye #{input}"
client.close
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment