githubEdit

Python

1) Simple HTTP Server

python -m SimpleHTTPServer

On Python3.x versions, you can use this instead

python3 -m http.server 80

Last updated