├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── build.yml │ └── deploy.yml ├── .gitignore ├── .prettierrc ├── LICENSE ├── README-fa.md ├── README.md ├── package.json ├── resources ├── provider-list.txt └── proxy-list.txt ├── src ├── auth.ts ├── clash.ts ├── collector.ts ├── config.ts ├── helpers.ts ├── interfaces.ts ├── panel.ts ├── qrcode.ts ├── sub.ts ├── trojan.ts ├── variables.ts ├── vless.ts └── worker.ts ├── tsconfig.json ├── worker-configuration.d.ts └── wrangler.toml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfarid/v2ray-worker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfarid/v2ray-worker/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfarid/v2ray-worker/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfarid/v2ray-worker/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfarid/v2ray-worker/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfarid/v2ray-worker/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfarid/v2ray-worker/HEAD/LICENSE -------------------------------------------------------------------------------- /README-fa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfarid/v2ray-worker/HEAD/README-fa.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfarid/v2ray-worker/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfarid/v2ray-worker/HEAD/package.json -------------------------------------------------------------------------------- /resources/provider-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfarid/v2ray-worker/HEAD/resources/provider-list.txt -------------------------------------------------------------------------------- /resources/proxy-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfarid/v2ray-worker/HEAD/resources/proxy-list.txt -------------------------------------------------------------------------------- /src/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfarid/v2ray-worker/HEAD/src/auth.ts -------------------------------------------------------------------------------- /src/clash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfarid/v2ray-worker/HEAD/src/clash.ts -------------------------------------------------------------------------------- /src/collector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfarid/v2ray-worker/HEAD/src/collector.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfarid/v2ray-worker/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfarid/v2ray-worker/HEAD/src/helpers.ts -------------------------------------------------------------------------------- /src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfarid/v2ray-worker/HEAD/src/interfaces.ts -------------------------------------------------------------------------------- /src/panel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfarid/v2ray-worker/HEAD/src/panel.ts -------------------------------------------------------------------------------- /src/qrcode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfarid/v2ray-worker/HEAD/src/qrcode.ts -------------------------------------------------------------------------------- /src/sub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfarid/v2ray-worker/HEAD/src/sub.ts -------------------------------------------------------------------------------- /src/trojan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfarid/v2ray-worker/HEAD/src/trojan.ts -------------------------------------------------------------------------------- /src/variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfarid/v2ray-worker/HEAD/src/variables.ts -------------------------------------------------------------------------------- /src/vless.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfarid/v2ray-worker/HEAD/src/vless.ts -------------------------------------------------------------------------------- /src/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfarid/v2ray-worker/HEAD/src/worker.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfarid/v2ray-worker/HEAD/tsconfig.json -------------------------------------------------------------------------------- /worker-configuration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfarid/v2ray-worker/HEAD/worker-configuration.d.ts -------------------------------------------------------------------------------- /wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfarid/v2ray-worker/HEAD/wrangler.toml --------------------------------------------------------------------------------