#applications #surf #disco #tide #tide-disco

surf-disco

HTTP client for use with tide-disco applications

1 unstable release

0.6.0 Apr 3, 2024

#267 in HTTP client

Download history 165/week @ 2024-03-30 424/week @ 2024-04-06

589 downloads per month

Custom license

48KB
893 lines

Surf Disco

A client library for Tide Disco applications.

Quick Start

let client: Client<ClientError> = Client::new(url_for_tide_disco_app);
let res: String = client.get("/module/route").send().await.unwrap();

To learn more, read the API reference.


lib.rs:

Surf Disco: a client library for Tide Disco applications.

Quick Start

let url = "http://localhost:50000".parse().unwrap();
let client: Client<ClientError, StaticVersion<0,1>> = Client::new(url);
let res: String = client.get("/app/route").send().await.unwrap();

Dependencies

~33–51MB
~1M SLoC