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

socks5-node-fetch

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

socks5-node-fetch

socks5 agent for node-fetch

  • 0.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
15
decreased by-48.28%
Maintainers
1
Weekly downloads
 
Created
Source

SOCKS5 node-fetch client

SOCKS v5 HTTP(s) client implementation in node-fetch

install

npm install socks5-node-fetch --save

Usage

const wrappedFetch = require('socks5-node-fetch')

const fetch = wrappedFetch({
    socksHost: 'localhost',
    socksPort: '1080'
})

// fetch(url, options)

fetch('https://google.com', {
    method: 'GET',
    ...
}).then(res => {

})


The socks5-node-fetch automatically detects protocol so both http and https are supported.

See node-fetch for more options

License

MIT

Keywords

FAQs

Package last updated on 14 Nov 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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