11

GitHub - seanmonstar/warp: A super-easy, composable, web framework for warp spee...

 5 years ago
source link: https://github.com/seanmonstar/warp
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

README.md

warp

Travis Build Status MIT licensed crates.io Released API docs

A super-easy, composable, web framework for warp speeds.

The fundamental building block of warp is the Filter: they can be combined and composed to express rich requirements on requests.

Example

extern crate warp;

use warp::Filter;

fn main() {
    // GET /hello/warp => 200 OK with body "Hello, warp!"
    let hello = warp::path!("hello" / String)
        .map(|name| format!("Hello, {}!", name));

    warp::serve(hello)
        .run(([127, 0, 0, 1], 3030));
}

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK