New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

proxy-rotator-agent

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

proxy-rotator-agent - npm Package Compare versions

Comparing version 0.0.3 to 0.0.4

3

package.json

@@ -6,3 +6,3 @@ {

"description": "HTTP proxy rotator tunneling agent",
"version": "0.0.3",
"version": "0.0.4",
"repository": {

@@ -22,2 +22,3 @@ "url": "https://github.com/fabiel-leon/proxy-rotator-agent"

"jest": "^29.1.2",
"node-fetch": "^3.2.10",
"request": "^2.88.2"

@@ -24,0 +25,0 @@ },

@@ -18,4 +18,4 @@ # proxy-rotator-agent

proxies: [
{ host: '10.0.0.1', port: 3128, proxyAuth: 'pass', headers: { 'user-agent': 'nautilus' }},
{ host: '10.0.0.2', port: 4545, proxyAuth: 'proxy2pass', headers: { 'user-agent': 'firefox' }}
{ proxy: { host: '10.0.0.1', port: 3128, proxyAuth: 'pass', headers: { 'user-agent': 'nautilus' }}},
{ proxy: { host: '10.0.0.2', port: 4545, proxyAuth: 'proxy2pass', headers: { 'user-agent': 'firefox' }}}
]

@@ -29,15 +29,15 @@ })

request({
const options = {
uri: 'https://httpbin.org/ip',
json: true,
agent,
},
};
request(
options,
optionalCallback
)
request({
uri: 'https://httpbin.org/ip',
json: true,
agent,
},
request(
options,
optionalCallback

@@ -66,4 +66,4 @@ )

proxies: [
{ host: '10.0.0.1', port: 3128, proxyAuth: 'pass', headers: { 'user-agent': 'nautilus' }},
{ host: '10.0.0.2', port: 4545, proxyAuth: 'proxy2pass', headers: { 'user-agent': 'firefox' }}
{ proxy: { host: '10.0.0.1', port: 3128, proxyAuth: 'pass', headers: { 'user-agent': 'nautilus' }}},
{ proxy: { host: '10.0.0.2', port: 4545, proxyAuth: 'proxy2pass', headers: { 'user-agent': 'firefox' }}}
]

@@ -76,3 +76,2 @@ })

agent,
};

@@ -79,0 +78,0 @@ // Make a request

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