#http-client #tide #disco #applications #surf

surf-disco

HTTP client for use with tide-disco applications

4 releases (breaking)

0.9.0 Jul 2, 2024
0.8.0 Jun 5, 2024
0.7.0 May 30, 2024
0.6.0 Apr 3, 2024

#86 in WebSocket

Download history 370/week @ 2024-07-07 336/week @ 2024-07-14 685/week @ 2024-07-21 563/week @ 2024-07-28 596/week @ 2024-08-04 522/week @ 2024-08-11 248/week @ 2024-08-18 1066/week @ 2024-08-25 605/week @ 2024-09-01 597/week @ 2024-09-08 524/week @ 2024-09-15 682/week @ 2024-09-22 616/week @ 2024-09-29 521/week @ 2024-10-06 502/week @ 2024-10-13 715/week @ 2024-10-20

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

~0–16MB
~243K SLoC