Crates.io | express-rs |
lib.rs | express-rs |
version | 0.0.5 |
source | src |
created_at | 2020-08-27 13:29:11.34583 |
updated_at | 2020-09-20 19:22:48.780644 |
description | Express.js clone written in your favorite language |
homepage | |
repository | https://github.com/garritfra/express-rs/ |
max_upload_size | |
id | 281441 |
size | 29,591 |
This crate emulates the behavior of the Express.js framework for Rust.
See ./examples for more examples
use express_rs::Express;
fn main() {
let mut app = Express::new();
app.get("/", |_, res| res.send("Hello World!".to_string()));
app.listen(8080);
}
This project is licensed under either of
at your option.