I know a few NodeJS modules like http-server that let me run Simple HTTP server on Mac. What are your favorite ways of running HTTP Servers on both Mac and Windows?
Sébastien Portebois
Software architect at Ubisoft
BrowserSync.io is a very simple solution. Install it globally and run a simple command to start a static HTML web server on any platform.
I use python -m SimpleHTTPServer 8000 on my mac. For windows you can either download & install Mongoose or use Cygwin/ActivePython.
If by 'Simple' your goal is to serve static web pages (ie, no support for php, cgi, or fancy stuff), then I switch recently to Fenix web server (Nodejs based I think), (I found it after being fed up with encoding issues on Windows with Python SimpleHttpServer)
fenixwebserver.com
Since I gave it a try, I haven't switched to anything else (unless need for more, in which case I'm more using Docker container in VMs, so that you have the same configuration no mater the host)