├── .github └── workflows │ ├── mannual-action.yml │ └── weekly-cron-actions.yml ├── .gitignore ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── README_zh.md ├── gcore_cdn_ip_ranges.json ├── index.js ├── package.json ├── result.txt ├── update_cdn_ranges.sh └── yarn.lock /.github/workflows/mannual-action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceWind/GcoreCDNIPSelector/HEAD/.github/workflows/mannual-action.yml -------------------------------------------------------------------------------- /.github/workflows/weekly-cron-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceWind/GcoreCDNIPSelector/HEAD/.github/workflows/weekly-cron-actions.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceWind/GcoreCDNIPSelector/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceWind/GcoreCDNIPSelector/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceWind/GcoreCDNIPSelector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceWind/GcoreCDNIPSelector/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceWind/GcoreCDNIPSelector/HEAD/README_zh.md -------------------------------------------------------------------------------- /gcore_cdn_ip_ranges.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceWind/GcoreCDNIPSelector/HEAD/gcore_cdn_ip_ranges.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceWind/GcoreCDNIPSelector/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceWind/GcoreCDNIPSelector/HEAD/package.json -------------------------------------------------------------------------------- /result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceWind/GcoreCDNIPSelector/HEAD/result.txt -------------------------------------------------------------------------------- /update_cdn_ranges.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceWind/GcoreCDNIPSelector/HEAD/update_cdn_ranges.sh -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceWind/GcoreCDNIPSelector/HEAD/yarn.lock --------------------------------------------------------------------------------