corsx is a lightweight CORS proxy running on Cloudflare's edge network. Helps client-side JavaScript fetch content from any URL without CORS restrictions.
GET /proxy?url=https://example.com
const response = await fetch(
`https://your-worker.workers.dev/proxy?url=${encodeURIComponent(url)}`
);
const data = await response.text();