An open API service indexing awesome lists of open source software.

https://github.com/geokaralis/epic

Fast, minimalist web framework for Rust. ⚡️
https://github.com/geokaralis/epic

express framework rust

Last synced: about 1 year ago
JSON representation

Fast, minimalist web framework for Rust. ⚡️

Awesome Lists containing this project

README

          

# Epic

Fast, minimalist web framework for Rust.

Epic is an Express like framework for Rust. It focuses on speed and simplicity.

```Rust
fn main() {
let mut app = Epic::new();

app.use("/", (req: &mut Request, res: &mut Response) -> MiddlewareResult {
res.send("Hello, World!");
});

app.listen("127.0.0.1:7878").unwrap();
}
```