iron <ul class="nav navbar-nav"> <li class="active"><a href="#">Docs</a></li> <li><a href="#contact">Other</a></li> </ul> Docs Resources Rust /r/rust /.nav-collapse extensible web framework for rust extern crate iron; use iron::prelude::*; use iron::status; fn main() { fn hello_world(_: &mut Request) -> IronResult<Response> { Ok(Response::with((status::Ok, "Hello World!"))) } Iron::new(hello_world).http("localhost:3000").unwrap(); println!("On 3000"); } /row Iron is a fast and flexible middleware-oriented server framework that provides a small but robust foundation for creating complex applications and RESTful APIs. No middleware are bundled with Iron - instead, everything is drag-and-drop, allowing for ridiculously modular setups. Iron tracks Ru...