import { proxyFetch } from "httpxy"; // TCP — using a URL string const res = await proxyFetch("http://127.0.0.1:3000", "http://example.com/api/data"); console.log(await res.json()); // Unix socket — using a URL string const res2 = await proxyFetch("unix:/tmp/app.sock", "http://localhost/health"); console.log(await res2.text()); // Or use an object for more control const res3 = await proxyFetch({ h

