nickel.rs

nickel.rs is a simple and lightweight foundation for web applications written in Rust. Its API is inspired by the popular express framework for JavaScript.
##Hello world
extern crate nickel;
use Nickel;
Dependencies
You'll need to create a Cargo.toml that looks like this;
[package]
name = "my-nickel-app"
version = "0.0.1"
authors = ["yourname"]
[dependencies.nickel]
version = "*"
features = ["unstable"]
You can then compile this using Cargo build and run it using Cargo run. After it's running you should visit http://localhost:6767 to see your hello world!
More examples
More examples can be found in the examples directory and the full documentation can be found here.
##License
##Contributing
nickel.rs is a community effort. We welcome new contributors with open arms. Please read the contributing guide here first.
If you're looking for inspiration, there's list of open issues right here on github.
If you need a helping hand reach out to @cburgdorf, @Ryman or @SimonPersson.
And hey, did you know you can also contribute by just starring the project here on github :)