mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 10:58:56 +00:00
* Add ecosystem guides * Update titles * Rename stric * Add unlink and fetch guides * Add formdata guide * Tweak title * Moar
613 B
613 B
name
| name |
|---|
| Send an HTTP request using fetch |
Bun implements the Web-standard fetch API for sending HTTP requests. To send a simple GET request to a URL:
const response = await fetch("https://bun.sh");
const html = await response.text(); // HTML string
To send a POST request to an API endpoint.
const response = await fetch("https://bun.sh/api", {
method: "POST",
body: JSON.stringify({ message: "Hello from Bun!" }),
headers: { "Content-Type": "application/json" },
});
const body = await response.json();