by trikko on 4/13/25, 9:40 AM with 3 comments
It’s written in D and designed to be fast, minimal, and secure by default. Hidden files and directories (like .git) aren’t served unless explicitly enabled. You can customize behavior through simple command-line flags — e.g., enable directory listing or auto-serve index.html.
Example:
websitino --list-dirs --index
I created it because I was tired of using Python's http.server or Node-based tools for simple use cases where I just want to serve a directory locally with minimal fuss and overhead.
by rvz on 4/13/25, 10:37 AM