22 releases (7 stable)

3.0.0-alpha.3 Feb 5, 2024
3.0.0-alpha.2 Sep 4, 2023
3.0.0-alpha.1 Aug 21, 2023
2.2.1 Aug 20, 2023
0.2.0 Nov 4, 2021

#94 in HTTP server

Download history 20/week @ 2024-01-29 6/week @ 2024-02-05 81/week @ 2024-02-19 66/week @ 2024-02-26 10/week @ 2024-03-04 41/week @ 2024-03-11 3/week @ 2024-03-18 6/week @ 2024-03-25 50/week @ 2024-04-01 5/week @ 2024-04-08

69 downloads per month
Used in afire_compress

MIT license

335KB
6K SLoC

🔥 afire Crates.io

THIS IS AN ALPHA RELEASE FOR v3.0.0 – Its probably not the best idea to use this in production and it will definitely have a lot of breaking changes in the future.

afire is a blazingly fast web server micro framework for rust.

💠 Install

Just add the following to your Cargo.toml:

[dependencies]
afire = "3.0.0-alpha.3"

📄 Info

afire is a simple synchronous multithreaded express.js inspired rust web micro framework. wow that was long. It comes with some built extensions in for Static File Serving, Rate limiting, and more.

Below you can find links to some afire related resources.

💥 Example

For more examples see the examples directory here.

Below is a super simple example so you can see the basics of afire syntax.

use afire::prelude::*;

let mut server = Server::<()>::new("localhost", 8080);

server.route(Method::GET, "/greet/{name}", |ctx| {
  let name = ctx.param("name");

  ctx.text(format!("Hello, {}", name))
      .content(Content::TXT)
      .send()?;

  Ok(())
});

server.run().unwrap();

💼 License

afire is licensed under the MIT license so you are free to do basically whatever you want with it as long as you add a copyright notice. You can read the full license text here.

No runtime deps

Features