Advertisement
dereksir

Untitled

Apr 21st, 2024 (edited)
572
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //...
  2. const proxyOptions = {
  3.     agent: {
  4.         // create a new HttpsProxyAgent instance
  5.         https: new HttpsProxyAgent({
  6.             // add proxy settings
  7.             keepAlive: true,
  8.             keepAliveMsecs: 1000,
  9.             maxSockets: 256,
  10.             maxFreeSockets: 256,
  11.             scheduling: 'lifo',
  12.             // specify proxy URL.
  13.             proxy: getRandomProxy()
  14.         })
  15.     }
  16. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement