HTTP Dev Server

Here are various ways to start a HTTP dev server on the terminal.

Python 2

python -m SimpleHTTPServer

Python 3

python -m http.server

Last updated