Skip to content

Commit 3b9fb3a

Browse files
ghivertlpil
authored andcommitted
Apply last documentation touches
1 parent 9687863 commit 3b9fb3a

File tree

5 files changed

+8
-48
lines changed

5 files changed

+8
-48
lines changed

CHANGELOG.md

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
## v1.2.0 - Unreleased
44

55
- Add support for formdata reading and editing.
6-
- Add documentation for every functions and improve README.
76

87
## v1.1.1 - 2025-02-06
98

README.md

+6-21
Original file line numberDiff line numberDiff line change
@@ -3,29 +3,12 @@
33
<a href="https://github.com/gleam-lang/fetch/releases"><img src="https://img.shields.io/github/release/gleam-lang/fetch" alt="GitHub release"></a>
44
<a href="https://discord.gg/Fm8Pwmy"><img src="https://img.shields.io/discord/768594524158427167?color=blue" alt="Discord chat"></a>
55

6-
A library to use [`fetch`](https://developer.mozilla.org/docs/Web/API/Fetch_API), the built-in JavaScript HTTP client!
7-
8-
## Features
9-
10-
- Issue HTTP requests.
11-
- Handle HTTP responses in different formats (text, binary, JSON).
12-
- Read & Write [`FormData`](https://developer.mozilla.org/docs/Web/API/FormData).
13-
14-
## Installation
15-
16-
Add `gleam_fetch` & `gleam_http` to your Gleam project.
6+
Make HTTP requests in Gleam JavaScript with Fetch.
177

188
```sh
19-
gleam add gleam_http gleam_fetch
9+
gleam add gleam_fetch@1 gleam_http
2010
```
2111

22-
> [!WARNING]
23-
> If you are running your Gleam project on the Erlang target (the default for
24-
> new Gleam projects) then you will want to use a different library which can
25-
> run on Erlang, such as [`gleam_httpc`](https://github.com/gleam-lang/httpc).
26-
27-
## Usage
28-
2912
```gleam
3013
pub fn main() {
3114
let assert Ok(req) = request.to("https://example.com")
@@ -47,5 +30,7 @@ pub fn main() {
4730

4831
Documentation can be found at [https://hexdocs.pm/gleam_fetch](https://hexdocs.pm/gleam_fetch).
4932

50-
`gleam_fetch` works on every JavaScript runtime implementing `fetch`, which
51-
implies all modern browsers, Node.js >= 18.0.0, Deno & Bun.
33+
> [!WARNING]
34+
> If you are running your Gleam project on the Erlang target (the default for
35+
> new Gleam projects) then you will want to use a different library which can
36+
> run on Erlang, such as [`gleam_httpc`](https://github.com/gleam-lang/httpc).

src/gleam/fetch.gleam

-5
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ pub type FetchResponse
3939
/// |> request.set_path("/example")
4040
/// |> fetch.to_fetch_request
4141
/// |> fetch.raw_send
42-
/// // -> Promise(Result(FetchResponse, FetchError))
4342
/// ```
4443
@external(javascript, "../gleam_fetch_ffi.mjs", "raw_send")
4544
pub fn raw_send(a: FetchRequest) -> Promise(Result(FetchResponse, FetchError))
@@ -137,7 +136,6 @@ pub fn send_bits(
137136
/// |> request.set_host("example.com")
138137
/// |> request.set_path("/example")
139138
/// fetch.to_fetch_request(request)
140-
/// // -> FetchRequest
141139
/// ```
142140
@external(javascript, "../gleam_fetch_ffi.mjs", "to_fetch_request")
143141
pub fn to_fetch_request(a: Request(String)) -> FetchRequest
@@ -159,7 +157,6 @@ pub fn to_fetch_request(a: Request(String)) -> FetchRequest
159157
/// |> form_data.append("key", "value")
160158
/// })
161159
/// fetch.form_data_to_fetch_request(request)
162-
/// // -> FetchRequest
163160
/// ```
164161
@external(javascript, "../gleam_fetch_ffi.mjs", "form_data_to_fetch_request")
165162
pub fn form_data_to_fetch_request(a: Request(FormData)) -> FetchRequest
@@ -178,7 +175,6 @@ pub fn form_data_to_fetch_request(a: Request(FormData)) -> FetchRequest
178175
/// |> request.set_path("/example")
179176
/// |> request.set_body(<<"data">>)
180177
/// fetch.bitarray_request_to_fetch_request(request)
181-
/// // -> FetchRequest
182178
/// ```
183179
@external(javascript, "../gleam_fetch_ffi.mjs", "bitarray_request_to_fetch_request")
184180
pub fn bitarray_request_to_fetch_request(a: Request(BitArray)) -> FetchRequest
@@ -194,7 +190,6 @@ pub fn bitarray_request_to_fetch_request(a: Request(BitArray)) -> FetchRequest
194190
/// |> fetch.to_fetch_request
195191
/// |> fetch.raw_send
196192
/// |> promise.map_try(fetch.from_fetch_response)
197-
/// // -> Promise(Result(Response(FetchBody), FetchError))
198193
/// ```
199194
@external(javascript, "../gleam_fetch_ffi.mjs", "from_fetch_response")
200195
pub fn from_fetch_response(a: FetchResponse) -> Response(FetchBody)

src/gleam/fetch/form_data.gleam

+1-20
Original file line numberDiff line numberDiff line change
@@ -26,40 +26,28 @@ import gleam/javascript/promise.{type Promise}
2626
/// ensure correct conversions between JavaScript & Gleam.
2727
pub type FormData
2828

29-
/// Create a `FormData` without any data.
30-
///
31-
/// ```gleam
32-
/// import gleam/fetch/form_data
33-
/// form_data.new()
34-
/// // -> form_data.FormData
35-
/// ```
29+
/// Create a new empty `FormData`.
3630
@external(javascript, "../../gleam_fetch_ffi.mjs", "newFormData")
3731
pub fn new() -> FormData
3832

3933
/// Append a key/string pair.
4034
///
4135
/// ```gleam
42-
/// import gleam/fetch/form_data
4336
/// form_data.new()
4437
/// |> form_data.append("key1", "value1")
4538
/// |> form_data.append("key1", "value2")
4639
/// |> form_data.append("key2", "value1")
47-
/// // "key1" -> ["value1", "value2"]
48-
/// // "key2" -> ["value1"]
4940
/// ```
5041
@external(javascript, "../../gleam_fetch_ffi.mjs", "appendFormData")
5142
pub fn append(form_data: FormData, key: String, value: String) -> FormData
5243

5344
/// Append a key/bitarray pair.
5445
///
5546
/// ```gleam
56-
/// import gleam/fetch/form_data
5747
/// form_data.new()
5848
/// |> form_data.append_bits("key1", <<"value1">>)
5949
/// |> form_data.append_bits("key1", <<"value2">>)
6050
/// |> form_data.append_bits("key2", <<"value1">>)
61-
/// // "key1" -> [<<"value1">>, <<"value2">>]
62-
/// // "key2" -> [<<"value1">>]
6351
/// ```
6452
@external(javascript, "../../gleam_fetch_ffi.mjs", "appendBitsFormData")
6553
pub fn append_bits(
@@ -71,33 +59,28 @@ pub fn append_bits(
7159
/// Set key/string pair, and replace any existing value for the specified key.
7260
///
7361
/// ```gleam
74-
/// import gleam/fetch/form_data
7562
/// form_data.new()
7663
/// |> form_data.append("key1", "value1")
7764
/// |> form_data.append_bits("key1", <<"value2">>)
7865
/// |> form_data.set("key1", "value3")
79-
/// // "key1" -> ["value3"]
8066
/// ```
8167
@external(javascript, "../../gleam_fetch_ffi.mjs", "setFormData")
8268
pub fn set(form_data: FormData, key: String, value: String) -> FormData
8369

8470
/// Set key/bitarray pair, and replace any existing value for the specified key.
8571
///
8672
/// ```gleam
87-
/// import gleam/fetch/form_data
8873
/// form_data.new()
8974
/// |> form_data.append("key1", "value1")
9075
/// |> form_data.append_bits("key1", <<"value2">>)
9176
/// |> form_data.set_bits("key1", <<"value3">>)
92-
/// // "key1" -> [<<"value3">>]
9377
/// ```
9478
@external(javascript, "../../gleam_fetch_ffi.mjs", "setBitsFormData")
9579
pub fn set_bits(form_data: FormData, key: String, value: BitArray) -> FormData
9680

9781
/// Remove a key and all its existing values.
9882
///
9983
/// ```gleam
100-
/// import gleam/fetch/form_data
10184
/// form_data.new()
10285
/// |> form_data.append("key1", "value1")
10386
/// |> form_data.append_bits("key1", <<"value2">>)
@@ -110,7 +93,6 @@ pub fn delete(form_data: FormData, key: String) -> FormData
11093
/// binary values, take a look at [`get_bits`](#get_bits).
11194
///
11295
/// ```gleam
113-
/// import gleam/fetch/form_data
11496
/// form_data.new()
11597
/// |> form_data.append("key1", "value1")
11698
/// |> form_data.append_bits("key1", <<"value2">>)
@@ -125,7 +107,6 @@ pub fn get(form_data: FormData, key: String) -> List(String)
125107
/// a `Promise`.
126108
///
127109
/// ```gleam
128-
/// import gleam/fetch/form_data
129110
/// form_data.new()
130111
/// |> form_data.append("key1", "value1")
131112
/// |> form_data.append_bits("key1", <<"value2">>)

src/gleam_fetch_ffi.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,4 +164,4 @@ export function keysFormData(formData) {
164164
result.add(key)
165165
}
166166
return toList([...result])
167-
}
167+
}

0 commit comments

Comments
 (0)