free-proxy-checker
Advanced tools
Comparing version 1.0.0 to 1.0.1
@@ -26,5 +26,5 @@ const fs = require('fs'); | ||
const proxies = readProxyFile(path.dirname(__filename) + '/data/http_proxies.txt', 'http').slice(0, 185); | ||
proxies.push(...readProxyFile(path.dirname(__filename) + '/data/socks4_proxies.txt', 'socks4').slice(0, 50)); | ||
proxies.push(...readProxyFile(path.dirname(__filename) + '/data/socks5_proxies.txt', 'socks5').slice(0, 150)); | ||
const proxies = readProxyFile(path.dirname(__filename) + '/data/http_proxies.txt', 'http'); | ||
proxies.push(...readProxyFile(path.dirname(__filename) + '/data/socks4_proxies.txt', 'socks4')); | ||
proxies.push(...readProxyFile(path.dirname(__filename) + '/data/socks5_proxies.txt', 'socks5')); | ||
@@ -31,0 +31,0 @@ const proxyChecker = new ProxyChecker(proxies, { |
{ | ||
"name": "free-proxy-checker", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Library without any external dependencies to check if free HTTP/SOCKS4/SOCKS5 proxies are working/up.", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -1,2 +0,2 @@ | ||
# free_proxy_checker | ||
# free-proxy_checker | ||
NodeJS library **WITHOUT** any external dependencies to check if free HTTP/SOCKS4/SOCKS5 proxies are working/up. | ||
@@ -24,2 +24,6 @@ | ||
## Library installation | ||
``` | ||
npm install free-proxy-checker | ||
``` | ||
@@ -54,1 +58,8 @@ ## Library usage | ||
``` | ||
## Remarks | ||
For the moment the library is really basic, it only checks if a proxy is UP/DOWN. | ||
It doesn't store any data about latency. | ||
Feel free to open an issue if you have a feature request. | ||
I may add it to the library if I feel like it's relevant. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
26728
64