9 unstable releases

Uses old Rust 2015

0.11.0 Jan 15, 2019
0.10.2 Nov 28, 2018
0.10.1 Dec 4, 2017
0.10.0 Jun 7, 2017
0.6.0 Jul 16, 2015

#941 in HTTP server

Download history 1043/week @ 2023-12-22 627/week @ 2023-12-29 1098/week @ 2024-01-05 1375/week @ 2024-01-12 1196/week @ 2024-01-19 1158/week @ 2024-01-26 831/week @ 2024-02-02 1123/week @ 2024-02-09 1252/week @ 2024-02-16 1147/week @ 2024-02-23 1155/week @ 2024-03-01 1265/week @ 2024-03-08 1151/week @ 2024-03-15 1312/week @ 2024-03-22 1748/week @ 2024-03-29 861/week @ 2024-04-05

5,258 downloads per month
Used in 44 crates (21 directly)

MIT license

140KB
2.5K SLoC

nickel.rs Build Status license Join the chat at https://gitter.im/nickel-org/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

#[macro_use] extern crate nickel;

use nickel::{Nickel, HttpRouter};

fn main() {
    let mut server = Nickel::new();
    server.get("**", middleware!("Hello World"));
    server.listen("127.0.0.1:6767");
}

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 = "*"
# If you are using the 'nightly' rust channel you can uncomment
# the line below to activate unstable features
# features = ["unstable"]

# Some examples require the `rustc_serialize` crate, which will
# require uncommenting the lines below
# [dependencies]
# rustc-serialize = "*"

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.

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 @jolhoeft, @cburgdorf, @Ryman or @SimonPersson.

And hey, did you know you can also contribute by just starring the project here on github :)

Dependencies

~7–18MB
~243K SLoC