AndersonFirmino
12/26/2016 - 7:21 PM

Simple HTTP server in Ruby and Python

Simple Ruby Server:
# ruby -run -e httpd -- -p 5000 .

Simple Python 2 Server:
# python -m SimpleHTTPServer

Simple Python 3 Server:
# python -m http.server