| Crates.io | xeo |
| lib.rs | xeo |
| version | 0.1.5 |
| created_at | 2026-01-14 02:38:02.672275+00 |
| updated_at | 2026-01-18 22:32:40.478803+00 |
| description | Rust-Based Web-Framework |
| homepage | https://xeo.rs |
| repository | https://github.com/evengarli/xeo |
| max_upload_size | |
| id | 2042006 |
| size | 6,324 |
XEO is a minimalist, high-performance web framework built from scratch in Rust.
Prerequisites
Ensure you have an index.html file in the root directory of your project.
Basic Usage
In your main.rs, initialize the XEO server:
use xeo::{server, version};
fn main() {
println!("{}", version());
// Starts the server on port 8080 serving "index.html"
server("index.html", 8080);
}
Run the Server
cargo run
Then, open your browser and navigate to http://127.0.0.1:8080.
This project is licensed under the MIT License.