<a href="https://github.com/integrii/serve" rel="nofollow">https://github.com/integrii/serve</a><p>I got tired of the huge list of static asset server options out there. Python's built in one, various ruby gems, piles of npm commands... So naturally I added another (the best!) one.<p>It is written in go, so that helps portability, speed. It's name is just 'serve'. No options or flags are required for invoking. It looks pretty. It supports hitting Command/Control-c gracefully.<p>Hopefully this is useful to some people. Feedback welcome! Thanks!
This is easier:<p><pre><code> alias serve="python -m SimpleHTTPServer"
</code></pre>
and is probably supported by every single *nix like system out there without installing anything.
How is this better than woof?<p><a href="http://www.home.unix-ag.org/simon/woof.html" rel="nofollow">http://www.home.unix-ag.org/simon/woof.html</a>