Grenade is a web framework focused on simplicity and speed, It's designed for various use cases and emphasizes the following key features:
Start by adding the Grenade library to your project's Cargo.toml
file:
toml
[dependencies]
grenade = "0.1"
```rust use grenade::*;
fn helloworld(: Context) -> String { "Hello World!".to_string() }
fn main() { let mut app = App::build();
app.get("/", hello_world);
app.listen(8080).unwrap();
} ```
Use the following command to run your Grenade app:
bash
$ cargo run
Your app will be up and running at http://localhost:8080/
.
We welcome and appreciate contributions from the community. There are no strict rules; just make your changes and start a pull request.