Rusty_Express v0.2.2

Rusty<em>Express on crates.io Rusty</em>Express on docs.rs

What is this

A simple http server library written in Rust and provide Express-alike APIs.

Under Development

This library is still actively worked on, to get the latest feature and bug fixes, please update to the latest version.

How to use

In your project's Cargo.toml, add dependency: rust [dependencies] rusty_express = "^0.2.2" ...

In src\main.rs: ```rust extern crate rusty_express;

use rustyexpress::HttpServer; use rustyexpress::ServerDef; use rustyexpress::http::*; use rustyexpress::router::*;

fn main() { //A http server with default thread pool size of 4 let mut server = HttpServer::new(); //Change thread pool size to 8. server.setpoolsize(8);

//Route definition
server.get(RequestPath::Exact("/"), simple_response);

//Listen to port 8080, server has started.
server.listen(8080);

}

pub fn simple_response(req: Request, resp: &mut Response) { resp.send(String::from("Hello world from the rusty-express server!\n")); resp.status(200); } ```