Crates.io | httpserv |
lib.rs | httpserv |
version | 1.0.3 |
source | src |
created_at | 2019-09-29 04:02:49.895571 |
updated_at | 2020-01-26 23:43:39.698043 |
description | A tiny, zero-dependency fileserver for local HTML development. |
homepage | |
repository | https://github.com/nic-hartley/httpserv |
max_upload_size | |
id | 168545 |
size | 25,440 |
A tiny, zero-dependency HTTP fileserver, meant for local development of HTML. It's not the absolute fastest, it's not the absolute smallest executable, it's not the most featureful, but it's incredibly simple to deploy and does almost nothing but just serve the file you name over HTTP. Specifically, all it does is:
..
s/index.html
Content-Type
Because of its simplicity, it's incredibly quick to install, quick to start, and quick to respond
Planned tasks can be seen in the issues
Planned non-features include:
cargo install httpserv
That's it. Assuming the Cargo bin directory is on your path, you can now call
httpserv
from your command line. For directions on installing Cargo, please
see rustup.rs.
On WSL, you may need to call cargo.exe
and httpserv.exe
instead, depending
on if you've got Rust installed on the Windows or WSL side of things.
All arguments are optional -- if you want to serve your current directory on
localhost:8080
with the default mappings, you can just type httpserv
and
hit enter. Otherwise:
httpserv [directory] [listen] [mappings...]
directory
: Where to look for files to serve. Defaults to .
listen
: The host/port to listen on, as expected by the FromStr
impl for
SocketAddr
. Defaults to localhost:8080
mappings...
: Any additional mappings from file extension to MIME
types, besides the defaults. Anything specified here which matches the same
extension as a default will override the default MIME type. The format is
extension=MIME
, with no leading .
on the extension.Because this is meant for local development and not production use, there are some issues which I haven't bothered to fix. In general, the reason why boils down to httpserv being meant to aid local development. If you're using it in any situation where you can't restart it at will, you're doing it very, very wrong.
Content-Length
will be incorrect,
so the browser may truncate the content or display an error.