13 releases

Uses old Rust 2015

0.5.0 Dec 10, 2017
0.4.0 Feb 5, 2017
0.3.1 Nov 8, 2016
0.3.0 Jul 27, 2016
0.0.3 Jun 10, 2015

#2230 in HTTP server

Download history 536/week @ 2026-01-05 558/week @ 2026-01-12 776/week @ 2026-01-19 755/week @ 2026-01-26 910/week @ 2026-02-02 347/week @ 2026-02-09 923/week @ 2026-02-16 929/week @ 2026-02-23 994/week @ 2026-03-02 1389/week @ 2026-03-09 926/week @ 2026-03-16 902/week @ 2026-03-23 1020/week @ 2026-03-30 1047/week @ 2026-04-06 1061/week @ 2026-04-13 940/week @ 2026-04-20

4,233 downloads per month
Used in 19 crates (18 directly)

MIT license

15KB
236 lines

staticfile Build Status

Static file-serving handler for the Iron web framework.

Example

This example uses the mounting handler to serve files from several directories.

let mut mount = Mount::new();

// Serve the shared JS/CSS at /
mount.mount("/", Static::new(Path::new("target/doc/")));
// Serve the static file docs at /doc/
mount.mount("/doc/", Static::new(Path::new("target/doc/staticfile/")));
// Serve the source code at /src/
mount.mount("/src/", Static::new(Path::new("target/doc/src/staticfile/lib.rs.html")));

Iron::new(mount).http("127.0.0.1:3000").unwrap();

See examples/doc_server.rs for a complete example that you can compile.

Overview

  • Serve static files from a given path.

It works well in combination with the mounting handler.

Installation

If you're using a Cargo.toml to manage dependencies, just add the staticfile package to the [dependencies] section of the toml:

staticfile = "*"

Otherwise, cargo build, and the rlib will be in your target directory.

Documentation

Along with the online documentation, you can build a local copy with cargo doc.

Get Help

One of us (@reem, @zzmp, @theptrk, @mcreinhard) is usually on #iron on the mozilla irc. Come say hi and ask any questions you might have. We are also usually on #rust and #rust-webdev.

Dependencies

~5MB
~108K SLoC