flyer 0.0.8

HTTP framework for rust
Documentation

Flyer - Web Framework

Getting Started

Prerequisites

Http key features:

  • Router -
  • Response Types -
  • Static Assets
  • WebSocket
  • Middleware
  • Session

Getting with Flyer

First create a new project using command:

cargo new example

After running the command add flyer to you project using command:

cargo add flyer

Running HTTP server

In order to run a basic server copy and paste below code snippet.

use std::io::Result;

fn main() -> Result<()> {
    let mut server = flyer::server("127.0.0.1".to_string(), 9999)?;

    server.router().get("/".to_owned(), |_req, res| {
        return res.html("<h1>Hello World!!!</h1>".to_owned());
    });

    print!("\r\n\r\nRunning server: {}\r\n\r\n", server.address());

    server.listen();

    Ok(())
}

Now we are ready to run the server using command.

cargo run