Need to quickly serve files over the network? Or even a full directory? Here is how to do with Python, PHP and NodeJs:
With Python 2.x:
$ python -m SimpleHTTPServerWith Python 3.x:
$ python -m http.serverWith PHP:
$ php -S localhost:8000With NodeJs:
$ npm install -g http-server
$ http-server