Simple Http Server

If you are lucky enough to have a mac then you can start up an http server in terminal with the following command.

$ python -m SimpleHTTPServer

If you want to start the http server on a particular port you can add it to the end of the command.

$ python -m SimpleHTTPServer 8080