tide-naive-static-files

Crates.iotide-naive-static-files
lib.rstide-naive-static-files
version2.2.0
sourcesrc
created_at2019-11-30 00:40:20.315891
updated_at2020-02-28 19:50:39.184906
descriptionA simple static file serving component for Rust's Tide web framework.
homepagehttps://github.com/eignnx/tide-naive-static-files
repositoryhttps://github.com/eignnx/tide-naive-static-files
max_upload_size
id185460
size75,650
eignnx (eignnx)

documentation

README

tide-naive-static-files

A simple static file serving component for Rust's Tide web framework.

Acknowledgements

This code is based heavily on this archived example.

This crate is not officially associated with the tide project, it's more of an interim solution while tide is still in a state of (relative) flux.

Note on Version Numbers

Mistakes were made when initially selecting version numbers for this crate. In the Rust ecosystem, a 1.0.0 release generally means the crate is fit for production. This crate makes no such claim. It would be best to "divide by ten" when looking at the crate's version number (i.e. 2.0.1 should be thought of as 0.2.0.1).

Example

To use the library:

  1. Define the route to host your assets under
  2. Stip the prefix so the routes match your files
  3. Set up a get endpoint with the StaticFilesEndpoint making sure the root represents the path from where you run the server to the root of your assets
use async_std::task;
use tide_naive_static_files::StaticFilesEndpoint;

struct AppState {}

fn main() {
    let state = AppState {};

    let mut app = tide::with_state(state);
    app.at("/static") // 1.
       .strip_prefix() // 2
       .get(StaticFilesEndpoint {
        root: "./examples/".into(), // 3.
    });

    task::block_on(async move { app.listen("127.0.0.1:8000").await.unwrap() });
}

Contributors

If you're interested in contributing to the project, please see our CONTRIBUTING.md file!

Commit count: 47

cargo fmt