1.0.7 • Published 6 months ago

free-proxy-nodejs v1.0.7

Weekly downloads
-
License
ISC
Repository
github
Last release
6 months ago

🧰 Free proxy nodejs

Free proxy nodejs is a lightweight Node.js NPM package designed to simplify the process of obtaining a list of proxies from https://spys.one. This package offers a convenient and customizable way to retrieve proxy data for your web scraping, security, or network-related projects. Whether you're working on web scraping tasks or require proxies for enhanced anonymity.

Features

  • Residential proxies
  • Ease of Use: Easily fetch proxy data from https://spys.one with just a few lines of code.
  • Customization: Configure the package to filter proxies based on your specific requirements, including country, anonymity level, and more.
  • Reliability: Free proxy is built to handle changes in the website's structure, ensuring consistent proxy data retrieval.
  • Proxy Validation: Validate the proxies to ensure they are working and responsive before use.

Getting Started

Installation

npm i free-proxy-nodejs -S

Usage

Example

import freeProxy from 'free-proxy-nodejs';

// Get list proxies
const proxies = await freeProxy.getProxies()
// [
//   {
//     host: '8.218.201.148',
//     port: 15673,
//     type: 'SOCKS5',
//     country: 'Hong Kong'
//   },
//   {
//     host: '192.210.197.134',
//     port: 3128,
//     type: 'HTTPS',
//     country: 'United States'
//   },
//   ...
// ]