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

surf-disco

HTTP client for use with tide-disco applications

1 unstable release

0.6.0 Apr 3, 2024

#237 in HTTP client

Download history 162/week @ 2024-03-30 447/week @ 2024-04-06 448/week @ 2024-04-13 607/week @ 2024-04-20 754/week @ 2024-04-27 640/week @ 2024-05-04 349/week @ 2024-05-11

2,467 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

~34–50MB
~1M SLoC