Skip to content

Instantly share code, notes, and snippets.

@sohelamin
Last active August 29, 2015 14:23
Show Gist options
  • Save sohelamin/ff322fa2b799eee87d5d to your computer and use it in GitHub Desktop.
Save sohelamin/ff322fa2b799eee87d5d to your computer and use it in GitHub Desktop.
Make HTTP Server

##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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment