socks5-node-fetch

0.0.4 • Public • Published

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

Dependencies (3)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i socks5-node-fetch

    Weekly Downloads

    15

    Version

    0.0.4

    License

    MIT

    Last publish

    Collaborators

    • ycwalker