Simple, lighting fast edge http request proxy server written in Deno/Typescript
https://ehp.deno.dev/<Any URL>
Just prefix any url with https://ehp.deno.dev/ and bypass CORS, ip/dns block and etc.
- Bypass CORS: Access any resource without CORS restrictions
- IP/DNS Block Circumvention: Access blocked resources through edge locations
- Redirect Following: Automatically follows HTTP redirects
- Final URL Resolution: Returns the final URL after redirects via
X-Final-URLheader - Custom Headers Support: Pass custom headers via
__headersquery parameter
Simply prepend your target URL to the proxy base URL:
https://epic-cobra-80.deno.dev/https://example.com
The proxy follows redirects and includes the final URL in the response headers:
curl -I https://epic-cobra-80.deno.dev/https://t.co/test
# Check X-Final-URL header for the resolved destinationimport axios from "axios";
const proxyUrl = "https://epic-cobra-80.deno.dev";
const targetUrl = "https://t.co/shortened-url";
const response = await axios.get(`${proxyUrl}/${targetUrl}`);
const finalUrl = response.headers["x-final-url"];
console.log("Resolved URL:", finalUrl);deno task deployCurrent deployment: https://epic-nose-80.deno.dev