Crates.io | octane |
lib.rs | octane |
version | 0.1.2 |
source | src |
created_at | 2020-06-11 21:17:29.021682 |
updated_at | 2020-09-01 10:47:13.788564 |
description | A web server built from the ground up. |
homepage | https://github.com/OctaneWeb/Octane |
repository | |
max_upload_size | |
id | 253001 |
size | 174,314 |
A high-powered web server aimed at minimizing dependencies while maintaining speed. Modeled after Express, a popular Javascript web framework, Octane combines the speed of Rust with the ease-of-use and flexibility of Express to create the optimal user experience.
Create an octane instance, and then you can register your methods on it using app.METHOD()
use octane::config::Config;
use octane::responder::StatusCode;
use octane::server::Octane;
use octane::{
route,
router::{Flow, Route},
};
use std::error::Error;
fn main() -> Result<(), Box<dyn Error>> {
let mut app = Octane::new();
app.ssl(8001)
.key("templates/key.pem")
.cert("templates/cert.pem");
app.get(
"/to_home",
route!(|req, res| {
res.redirect("/").send("redirecting");
Flow::Stop
}),
)?;
app.get(
"/",
route!(|req, res| {
res.send_file("templates/test.html").expect("File not found!");
Flow::Next
}),
)?;
app.add(Octane::static_dir("templates/"))?;
app.listen(8000)
}
Documentation will be available on docs.rs and on the offical Octane Site.
Checkout CONTRIBUTING.md for info on how to contribute to this project
OctaneWeb/Octane is licensed under the MIT License.