Popsicle Proxy Agent
Generic proxy agent (for Popsicle and node.js).
Installation
npm install popsicle-proxy-agent --save
Usage
var popsicle = require('popsicle')
var createProxy = require('popsicle-proxy-agent')
var proxy = createProxy({
proxy: '...'
})
popsicle.get({
url: 'http://example.com',
transport: popsicle.createTransport({
agent: proxy('http://example.com')
})
})
Options
- proxy The default HTTP(s) proxy to use
- httpProxy The proxy for HTTP requests (default:
process.env.HTTP_PROXY
) - httpsProxy The proxy for HTTPS requests (default:
process.env.HTTPS_PROXY
) - noProxy A string of space-separated hosts to not proxy (default:
process.env.NO_PROXY
)
License
Apache 2.0