You can spawn a simple http server in your localhost with a single line using Python from your command line.
Python 2.x
python -m SimpleHTTPServer
Python 3.x
python -m http.server 8000
Code language: CSS (css)
Or, if you don't have an alias perhaps:
python3 -m http.server 8000
Code language: CSS (css)