Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

free-proxy-checker

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

free-proxy-checker - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

6

examples/example1-proxies-from-files.js

@@ -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.
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc