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. ⚡️
- Host: GitHub
- URL: https://github.com/geokaralis/epic
- Owner: geokaralis
- Created: 2020-06-21T09:49:02.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-01T17:22:52.000Z (almost 6 years ago)
- Last Synced: 2025-01-12T16:11:27.308Z (about 1 year ago)
- Topics: express, framework, rust
- Language: Rust
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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();
}
```