Skip to content

Instantly share code, notes, and snippets.

@ozantunca
Last active December 20, 2023 12:16
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ozantunca/889cc95eaa1d6defc50237ddd0954843 to your computer and use it in GitHub Desktop.
Save ozantunca/889cc95eaa1d6defc50237ddd0954843 to your computer and use it in GitHub Desktop.
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