Forked from dvliman/Simple HTTP server in Ruby and Python
Created
December 26, 2016 19:21
-
-
Save AndersonFirmino/1533119aee8d692ab86169e8a6eec202 to your computer and use it in GitHub Desktop.
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
Simple Ruby Server: | |
# ruby -run -e httpd -- -p 5000 . | |
Simple Python 2 Server: | |
# python -m SimpleHTTPServer | |
Simple Python 3 Server: | |
# python -m http.server |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment