##Create Portable Server in a Second for Development Purpose
###Python:
python -m SimpleHTTPServer 8888
###Python 3+:
python -m http.server 8888
###PHP:
php -S localhost:8888
###Ruby:
ruby -run -e httpd . -p 8888
##Create Portable Server in a Second for Development Purpose
###Python:
python -m SimpleHTTPServer 8888
###Python 3+:
python -m http.server 8888
###PHP:
php -S localhost:8888
###Ruby:
ruby -run -e httpd . -p 8888