Skip to content

Instantly share code, notes, and snippets.

@michaelgiles
Forked from VikramTiwari/basic-servers.md
Created September 19, 2018 20:17
Show Gist options
  • Select an option

  • Save michaelgiles/be18b08a7137756a183d0417cb6a803d to your computer and use it in GitHub Desktop.

Select an option

Save michaelgiles/be18b08a7137756a183d0417cb6a803d 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