The Simplest Static Fileserver
srv
is the simplest fileserver I could imagine.
Serve the current working directory on :8000
:
srv
Serve a directory on :8000
:
srv -dir 'files'
Serve a directory on a specified port:
srv -dir 'files' -addr ':8001'