eingress / axios-socks5-agent

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

axios-socks5-agent

npm i axios-socks5-agent

wrap for socks5-http-client and socks5-https-client. I wrote this because there is no module support socks5 for axios and allow modifying agentOptions (sth likes keepAlive)

const axios = require('axios')
const SocksAgent = require('axios-socks5-agent')

const { httpAgent, httpsAgent } = new SocksAgent({ agentOptions: { keepAlive: true }})

axios
  .get('http://wtfismyip.com/json', { httpAgent, httpsAgent })
  .then(res => console.log(res.data))
  .catch(e => console.error(e))

Usage

  • new Socks5Agent(options) => { httpAgent, httpsAgent }

  • httpAgent vs httpsAgent: axios config

About


Languages

Language:JavaScript 100.0%