Skip to content

Instantly share code, notes, and snippets.

@VikramTiwari
Created March 24, 2015 07:25
Show Gist options
  • Save VikramTiwari/8d17ac8ef3c0c556aea0 to your computer and use it in GitHub Desktop.
Save VikramTiwari/8d17ac8ef3c0c556aea0 to your computer and use it in GitHub Desktop.
Simple Servers

When developing locally use the following servers

For Python 2.7x

python -m SimpleHTTPServer 8888 &

For Python 3.x

python -m http.server 8888 &

For NodeJS

npm install http-server -g
http-server

For Ruby

ruby -run -e httpd . -p 8888

For PHP

php -S localhost:8888
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment