Launch a Web Server from a directory with python/ruby/php

January 15th, 2016 - Bonn

With Python

python -m SimpleHTTPServer

With Ruby

ruby -run -e httpd . -p 3000

With PHP

php -S localhost:8000