const { SocksProxyAgent } = require('socks-proxy-agent'); | |
const axios = require('axios'); | |
const agent = new SocksProxyAgent('socks5h://127.0.0.1:9050'); | |
axios({ | |
url: 'https://ifconfig.me', | |
httpsAgent: agent, | |
}) | |
.then(({ | |
data | |
}) => { | |
console.log(data); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment