├── .env.local ├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── LICENSE ├── README.md ├── bun.lockb ├── favicon.ico ├── package.json ├── src ├── handler │ └── request.ts └── index.ts ├── tsconfig.json └── wrangler.toml /.env.local: -------------------------------------------------------------------------------- 1 | PROXY_URL=https://goodproxy.zephex0-f6c.workers.dev/fetch?url= -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/Good-Proxy/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/Good-Proxy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/Good-Proxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/Good-Proxy/HEAD/README.md -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/Good-Proxy/HEAD/bun.lockb -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/Good-Proxy/HEAD/favicon.ico -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/Good-Proxy/HEAD/package.json -------------------------------------------------------------------------------- /src/handler/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/Good-Proxy/HEAD/src/handler/request.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/Good-Proxy/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/Good-Proxy/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/Good-Proxy/HEAD/wrangler.toml --------------------------------------------------------------------------------