Quickly Starting A 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
Here are various ways to start a HTTP dev server on the terminal.
$ python -m SimpleHTTPServer
$ python -m http.server