rusty_express 0.3.0

A simple http server library written in Rust and provide Express-alike APIs. We know that Rust is hard and daunting, so we will make sure your server can be easy to use without fear!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod threads;
mod route_trie;

#[cfg(feature = "session")]
pub mod session;

pub mod common;
pub mod debug;
pub mod shared_pool {
    pub use support::threads::{close, initialize_with, run};
}

pub use self::threads::TaskType;
pub use self::route_trie::*;
pub use self::threads::ThreadPool;