@Jolyne_AI: 做爬虫、搞数据采集,代理服务器几乎是标配,不然 IP 分分钟被封。更麻烦的是,网上一堆“免费代理”基本都失效了。 我在 GitHub 刚好挖到一个开源项目:Proxifly。它每 5 分钟自动抓取、更新并验证免费代理,把“可用”这件事做得…
摘要
介绍了 GitHub 上的开源项目 Proxifly,每 5 分钟自动抓取并验证可用代理,覆盖 60+ 国家,支持多种协议,提供多种格式下载和 npm 安装。
查看缓存全文
缓存时间: 2026/06/29 08:25
做爬虫、搞数据采集,代理服务器几乎是标配,不然 IP 分分钟被封。更麻烦的是,网上一堆“免费代理”基本都失效了。
我在 GitHub 刚好挖到一个开源项目:Proxifly。它每 5 分钟自动抓取、更新并验证免费代理,把“可用”这件事做得很扎实,省下大量筛选和排查时间。
目前覆盖 60 个国家,提供 806 个可用代理,支持 HTTP、HTTPS、SOCKS4、SOCKS5 等协议;并按协议类型与国家/地区清晰分类,需要什么直接找,速度很快。
GitHub:http://github.com/proxifly/free-proxy-list… 官网:https://proxifly.dev
另外还做了去重,避免重复代理拖累体验;支持 JSON、TXT、CSV 三种格式下载,也能通过 npm 安装,直接在代码里调用。需要稳定免费代理池的话,可以去看看。
proxifly/free-proxy-list
Source: https://github.com/proxifly/free-proxy-list
Site | NPM Module | GitHub Repo
🌎 Proxifly’s free proxy list
Every 5 minutes, Proxifly fetches fresh proxies—including HTTP, HTTPS, SOCKS4, and SOCKS5 proxies—from around the web.
Proxifly found 3594 working proxies from 98 countries in the latest update (Jun 29, 2026, 07:18 AM UTC).
🦄 Features
- ⚡ Extremely fast
- 📝 Validated every 5 minutes
- 📓 Sorted into HTTP, HTTPS, SOCKS4, & SOCKS5
- 🌎 Contains proxies from 98 countries
- 📦 Available in .json, .txt, & .csv formats
- 🔐 Supports HTTPS connection
- 😊 No duplicates
📦 How do I use the proxies?
You have a few different options for getting the proxies:
🛑 Please follow the GitHub Acceptable Use Policy when using this project. You should use these proxies responsibly, without abusing them, and without intent to commit illegal activity.
👑 Download from our website: Free proxy list
💎 Download in our Free proxy scraper software
🔗 Direct download links
Click on your preferred file format to get the updated list
| Type | Count | .json | .txt | .csv |
|---|---|---|---|---|
| All Proxies | 3594 | JSON File | Text File | CSV File |
| HTTP Proxies | 1173 | JSON File | Text File | CSV File |
| HTTPS Proxies | 1277 | JSON File | Text File | CSV File |
| SOCKS4 Proxies | 765 | JSON File | Text File | CSV File |
| SOCKS5 Proxies | 379 | JSON File | Text File | CSV File |
| U.S. proxies (view more countries) | 519 | JSON File | Text File | CSV File |
Other sorted proxies
🙌 Use the Proxifly NPM module
Easily fetch updated proxies in your application with the official Proxifly NPM module.
# Run this command to install the module:
npm install proxifly
// ESM
import Proxifly from 'proxifly';
// CommonJS
const Proxifly = require('proxifly');
const proxifly = new Proxifly({
// Not required, but having one removes limits (get your key at https://proxifly.dev).
apiKey: 'your-api-key'
});
// Fetch proxies with your desired options:
proxifly.getProxy({
protocol: 'http', // http | socks4 | socks5
anonymity: 'elite', // transparent | anonymous | elite
country: 'US', // ISO country code
https: true, // true | false
format: 'json', // json | text
quantity: 1, // 1 - 20
})
.then(proxy => {
console.log('Proxies:', proxy);
})
.catch(e => {
console.error(e);
})
🔑 Fetch with cURL
Fetch the latest proxy list with the following command:
All proxies
curl -sL https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/all/data.txt -o all.txt
HTTP proxies
curl -sL https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/protocols/http/data.txt -o http.txt
SOCKS4 proxies
curl -sL https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/protocols/socks4/data.txt -o socks4.txt
SOCKS5 proxies
curl -sL https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/protocols/socks5/data.txt -o socks5.txt
U.S. proxies (view more countries)
curl -sL https://cdn.jsdelivr.net/gh/proxifly/free-proxy-list@main/proxies/countries/US/data.txt -o socks5.txt
✨ Star history
🧸 Contributing
Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given.
相似文章
@axichuhai: 兄弟们,这个开源项目直接开了上帝视角,把爬虫效率直接拉高数十倍,已经登顶 GitHub 热榜,5w+ star 数。 以前抓数据要写代码、维护选择器、对付各种反爬机制,现在全省了。 扔个 URL 进去,零代码、原生绕过屏蔽、不用维护选择器…
这个开源项目能零代码抓取网页数据,绕过反爬机制,效率提升数十倍,已获得5万+star。
@Jolyne_AI: 又在 GitHub 挖到一款高性能爬虫/抓取利器:AnyCrawl,把数据采集这件事做得更省心、更高效。 它把 Cheerio、Playwright、Puppeteer 三种引擎打包到一起:静态页面秒解析,复杂 JavaScript 渲染…
AnyCrawl 是一款高性能开源爬虫/抓取工具,集成了 Cheerio、Playwright、Puppeteer 三种引擎,支持静态解析与 JS 渲染、SERP 批量抓取、站点级爬虫、多线程/多进程并发、代理支持,并针对 LLM 数据采集优化输出格式。
@ChrisSlacker: 10个GitHub仓库帮你爬取整个互联网 全部收藏。每个都能从任何网站提取干净数据,这种访问权限通常需要销售电话和合同才能获得。 1. https://github.com/firecrawl/firecrawl… 指向任何网站,它就能爬…
这篇文章介绍了10个用于网络爬虫的GitHub开源仓库,包括Firecrawl、Crawl4AI等,能够从网站提取干净数据,支持AI就绪的格式。
@CycleDecoded: 别再花大价钱买那些破爬虫软件交智商税了!这几天有个开源工具简直离谱,直接把全网社交平台的数据底裤都给扒了,搞流量矩阵和数据变现的饭碗真危了! 这就是 GitHub 上狂砍 5.4 万+ 星标的超神开源项目 MediaCrawler。大白话…
MediaCrawler 是一个 GitHub 上 5.4 万+ Star 的开源多平台社交媒体爬虫工具,支持小红书、抖音、B站等 7 大平台的数据采集,具备多账号、IP 代理、断点续爬和 AI 集成等特性。
@sido2038: https://x.com/sido2038/status/2058524632756662676
一篇详细教程,介绍如何利用GitHub、Cloudflare和Railway等免费服务零成本搭建纯净代理IP,用于访问海外AI大模型。