├── .eslintignore ├── .eslintrc.cjs ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── feature-request.md │ ├── localisation.md │ └── suggest-new-proxy.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── build.yml │ └── stale.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── README.md ├── netlify.toml ├── package.json ├── playwright.config.ts ├── src ├── app.d.ts ├── app.html ├── index.test.ts ├── lib │ ├── components │ │ ├── SEO │ │ │ └── index.svelte │ │ ├── footer │ │ │ └── footer.svelte │ │ ├── homepage │ │ │ └── proxyInfo.svelte │ │ ├── navbar │ │ │ └── navbar.svelte │ │ └── proxyList │ │ │ ├── connectButton.svelte │ │ │ ├── proxyEntry.svelte │ │ │ └── proxyTable.svelte │ ├── config │ │ └── website.ts │ ├── const │ │ ├── mirrorList.ts │ │ ├── proxyList.ts │ │ └── routes.ts │ ├── locale │ │ ├── i18.ts │ │ └── lang │ │ │ ├── en.json │ │ │ ├── fa.json │ │ │ └── nl.json │ ├── typeDef │ │ ├── proxyApiReponse.ts │ │ └── proxyType.ts │ └── util │ │ ├── calculatePing.ts │ │ ├── countryToEmoji.ts │ │ ├── proxyListFromApi.ts │ │ ├── toastHelper.ts │ │ └── typeDefs.d.ts └── routes │ ├── +layout.svelte │ ├── +page.svelte │ ├── how-to-connect │ └── +page.svelte │ └── mirror │ └── +page.svelte ├── static ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── robots.txt ├── site.webmanifest └── sitemap.xml ├── svelte.config.js ├── tests └── test.ts ├── tsconfig.json ├── vite.config.ts ├── yarn-error.log └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/localisation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/.github/ISSUE_TEMPLATE/localisation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggest-new-proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/.github/ISSUE_TEMPLATE/suggest-new-proxy.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/README.md -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/src/app.d.ts -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/src/app.html -------------------------------------------------------------------------------- /src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/src/index.test.ts -------------------------------------------------------------------------------- /src/lib/components/SEO/index.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/src/lib/components/SEO/index.svelte -------------------------------------------------------------------------------- /src/lib/components/footer/footer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/src/lib/components/footer/footer.svelte -------------------------------------------------------------------------------- /src/lib/components/homepage/proxyInfo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/src/lib/components/homepage/proxyInfo.svelte -------------------------------------------------------------------------------- /src/lib/components/navbar/navbar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/src/lib/components/navbar/navbar.svelte -------------------------------------------------------------------------------- /src/lib/components/proxyList/connectButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/src/lib/components/proxyList/connectButton.svelte -------------------------------------------------------------------------------- /src/lib/components/proxyList/proxyEntry.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/src/lib/components/proxyList/proxyEntry.svelte -------------------------------------------------------------------------------- /src/lib/components/proxyList/proxyTable.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/src/lib/components/proxyList/proxyTable.svelte -------------------------------------------------------------------------------- /src/lib/config/website.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/src/lib/config/website.ts -------------------------------------------------------------------------------- /src/lib/const/mirrorList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/src/lib/const/mirrorList.ts -------------------------------------------------------------------------------- /src/lib/const/proxyList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/src/lib/const/proxyList.ts -------------------------------------------------------------------------------- /src/lib/const/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/src/lib/const/routes.ts -------------------------------------------------------------------------------- /src/lib/locale/i18.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/src/lib/locale/i18.ts -------------------------------------------------------------------------------- /src/lib/locale/lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/src/lib/locale/lang/en.json -------------------------------------------------------------------------------- /src/lib/locale/lang/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/src/lib/locale/lang/fa.json -------------------------------------------------------------------------------- /src/lib/locale/lang/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/src/lib/locale/lang/nl.json -------------------------------------------------------------------------------- /src/lib/typeDef/proxyApiReponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/src/lib/typeDef/proxyApiReponse.ts -------------------------------------------------------------------------------- /src/lib/typeDef/proxyType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/src/lib/typeDef/proxyType.ts -------------------------------------------------------------------------------- /src/lib/util/calculatePing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/src/lib/util/calculatePing.ts -------------------------------------------------------------------------------- /src/lib/util/countryToEmoji.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/src/lib/util/countryToEmoji.ts -------------------------------------------------------------------------------- /src/lib/util/proxyListFromApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/src/lib/util/proxyListFromApi.ts -------------------------------------------------------------------------------- /src/lib/util/toastHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/src/lib/util/toastHelper.ts -------------------------------------------------------------------------------- /src/lib/util/typeDefs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/src/lib/util/typeDefs.d.ts -------------------------------------------------------------------------------- /src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/src/routes/+layout.svelte -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/src/routes/+page.svelte -------------------------------------------------------------------------------- /src/routes/how-to-connect/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/src/routes/how-to-connect/+page.svelte -------------------------------------------------------------------------------- /src/routes/mirror/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/src/routes/mirror/+page.svelte -------------------------------------------------------------------------------- /static/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/static/android-chrome-192x192.png -------------------------------------------------------------------------------- /static/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/static/android-chrome-512x512.png -------------------------------------------------------------------------------- /static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/static/apple-touch-icon.png -------------------------------------------------------------------------------- /static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/static/favicon-16x16.png -------------------------------------------------------------------------------- /static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/static/favicon-32x32.png -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- 1 | User-Agent: * 2 | Allow: / 3 | 4 | -------------------------------------------------------------------------------- /static/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/static/site.webmanifest -------------------------------------------------------------------------------- /static/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/static/sitemap.xml -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tests/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/tests/test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/yarn-error.log -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp-Proxy/whatsapp-proxies-web/HEAD/yarn.lock --------------------------------------------------------------------------------