#tide #disco #applications #surf #api

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

#185 in HTTP client

Download history 261/week @ 2024-08-16 1046/week @ 2024-08-23 586/week @ 2024-08-30 501/week @ 2024-09-06 551/week @ 2024-09-13 710/week @ 2024-09-20 650/week @ 2024-09-27 509/week @ 2024-10-04 526/week @ 2024-10-11 722/week @ 2024-10-18 619/week @ 2024-10-25 828/week @ 2024-11-01 780/week @ 2024-11-08 1001/week @ 2024-11-15 876/week @ 2024-11-22 521/week @ 2024-11-29

3,395 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

~35–51MB
~1M SLoC