Bun

指南HTTP

在 Bun 中使用 Unix 域套接字进行 fetch

在 Bun 中,fetch() 函数的 unix 选项允许你通过 Unix 域套接字 发送 HTTP 请求。

const unix = "/var/run/docker.sock";

const response = await fetch("https://127.0.0.1/info", { unix });

const body = await response.json();
console.log(body); // { ... }

unix 选项是一个字符串,用于指定 Unix 域套接字的本地文件路径。fetch() 函数将使用该套接字向服务器发送请求,而不是使用 TCP 网络连接。通过在 URL 中使用 https:// 协议而不是 http://,也支持 https

要通过 Unix 域套接字向 API 端点发送 POST 请求

const response = await fetch("https://hostname/a/path", {
  unix: "/var/run/path/to/unix.sock",
  method: "POST",
  body: JSON.stringify({ message: "Hello from Bun!" }),
  headers: {
    "Content-Type": "application/json",
  },
});

const body = await response.json();