enrgy

Crates.ioenrgy
lib.rsenrgy
version0.2.2
sourcesrc
created_at2021-07-05 20:20:32.205522
updated_at2021-08-05 06:53:57.165238
descriptionA (nightly) insecure lightweight synchronous Actix-like HTTP server
homepage
repositoryhttps://github.com/Txuritan/enrgy
max_upload_size
id419176
size49,752
Ian Cronkright (Txuritan)

documentation

README

enrgy

A (nightly) insecure lightweight synchronous Actix-like HTTP server.

WARNING: Do not allow access to this server from the open internet, it has little to no security measures.

Example

use enrgy::{web, App, HttpServer, Responder};

fn index() -> impl Responder {
    "Hello World!"
}

fn greet(name: web::Param<"name">) -> impl Responder {
    format!("Hello {}!", *name)
}

fn main() -> Result<(), Box<dyn std::error::Error>> {
    HttpServer::new(
        App::new()
            .service(web::get("/").to(index))
            .service(web::get("/:name").to(greet))
    )
    .bind(("127.0.0.1", 8080))
    .run()?;

    Ok(())
}

FAQ

Q: Why the name 'enrgy'?

A: I was trying to come up with a name and miss-spelled energy.

Commit count: 72

cargo fmt