hpagent
Version:
A ready to use http and https agent for working with proxies that keeps connections alive!
46 lines (41 loc) • 817 B
text/typescript
import * as http from 'http'
import * as https from 'https'
import { expectType } from 'tsd'
import {
HttpProxyAgent,
HttpProxyAgentOptions,
HttpsProxyAgent,
HttpsProxyAgentOptions
} from '../'
{
const agent = new HttpProxyAgent({
keepAlive: true,
keepAliveMsecs: 1000,
maxSockets: 256,
maxFreeSockets: 256,
proxy: 'http://localhost:8080'
})
expectType<HttpProxyAgent>(agent)
http.request({
method: 'GET',
hostname: 'localhost',
port: 9200,
agent
})
}
{
const agent = new HttpsProxyAgent({
keepAlive: true,
keepAliveMsecs: 1000,
maxSockets: 256,
maxFreeSockets: 256,
proxy: 'http://localhost:8080'
})
expectType<HttpsProxyAgent>(agent)
https.request({
method: 'GET',
hostname: 'localhost',
port: 9200,
agent
})
}