Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Androidasync | 7,308 | 285 | 22 | 6 months ago | 65 | November 08, 2020 | 351 | other | Java | |
Asynchronous socket, http(s) (client+server) and websocket library for android. Based on nio, not threads. | ||||||||||
Requests Futures | 2,036 | 811 | 135 | 5 days ago | 10 | June 11, 2019 | 1 | other | Python | |
Asynchronous Python HTTP Requests for Humans using Futures | ||||||||||
Finch | 1,599 | 1 | 28 | 22 days ago | 50 | September 09, 2019 | 42 | apache-2.0 | Scala | |
Scala combinator library for building Finagle HTTP services | ||||||||||
Trip | 214 | 1 | 4 years ago | 11 | March 27, 2018 | 3 | other | Python | ||
Async HTTP for Humans, coroutine Requests :tent: | ||||||||||
Backtalk | 158 | 6 years ago | 1 | June 14, 2017 | 10 | other | Rust | |||
HTTP/Websockets API microframework | ||||||||||
Http Service | 105 | 24 | 9 | 3 years ago | 12 | April 11, 2020 | other | Rust | ||
Types and traits for http-based services using the latest futures API | ||||||||||
Tsukuyomi | 79 | 3 | 6 | 4 years ago | 19 | December 26, 2018 | 7 | other | Rust | |
Asynchronous Web framework for Rust | ||||||||||
Awesome Swift Nio | 62 | 2 years ago | ||||||||
📖 A collaborative list of all things Swift NIO | ||||||||||
Finchers | 58 | 5 | 6 | 4 years ago | 30 | October 16, 2018 | 15 | other | Rust | |
A combinator library for building asynchronous HTTP services | ||||||||||
Shinny Futures H5 | 57 | 3 years ago | 1 | gpl-3.0 | JavaScript | |||||
一个开源的 HTML5 期货行情交易终端 |
finchers
finchers
is a combinator library for building asynchronous HTTP services.
The concept and design was highly inspired by finch
.
Add this item to Cargo.toml
in your project:
[dependencies]
finchers = "0.14.0-dev"
use finchers::{
prelude::*,
endpoint::syntax::path,
};
fn main() -> izanami::Result<()> {
let endpoint = path!(@get "/greeting/<String>")
.map(|name: String| {
format!("Hello, {}!\n", name)
});
izanami::Server::build()
.start(endpoint.into_service())
}
finchers-juniper
- GraphQL integration support, based on juniper
finchers-tungstenite
- WebSocket support, based on tungstenite
finchers-session
: Session supportfinchers-template
: Template engine supportTravis CI | Codecov |
---|---|
This project is licensed under either of
at your option.