Simple HTTPServer in Python
Note
This is an article for 鰻 Advent Calendar 2017.
Every time I'd like to use a http server in development such as checking generated HTML documentation files, I need to google how to do it. So I post a blog as a memorandum.
Python2
$ python -m SimpleHTTPServer [PORT] # default …