Gathering detailed insights and metrics for superagent-proxy-iee
Gathering detailed insights and metrics for superagent-proxy-iee
Gathering detailed insights and metrics for superagent-proxy-iee
Gathering detailed insights and metrics for superagent-proxy-iee
npm install superagent-proxy-iee
Typescript
Module System
Min. Node Version
Node Version
NPM Version
61.5
Supply Chain
91.2
Quality
78.4
Maintenance
100
Vulnerability
99.6
License
JavaScript (100%)
Total Downloads
429
Last Day
2
Last Week
8
Last Month
27
Last Year
429
76 Commits
1 Branches
1 Contributors
Minified
Minified + Gzipped
Latest Version
1.1.2
Package Id
superagent-proxy-iee@1.1.2
Unpacked Size
14.60 kB
Size
5.05 kB
File Count
7
NPM Version
10.8.3
Node Version
20.16.0
Publised On
17 Oct 2024
Cumulative downloads
Total Downloads
Last day
0%
2
Compared to previous day
Last week
700%
8
Compared to previous week
Last month
145.5%
27
Compared to previous month
Last year
0%
429
Compared to previous year
Request#proxy(uri)
superagent extension for ieeThis module extends superagent
's Request
class with
a .proxy(uri)
function. This allows you to proxy the HTTP request through a
proxy of some kind.
small adjustment for iee
Bugs will not be maintained as this is a very special version for only one usecase
It is backed by the proxy-agent
module, so see
its README for more details.
Install with npm
:
1$ npm install superagent-proxy-iee
1var request = require('superagent'); 2 3// extend with Request#proxy() 4require('superagent-proxy-iee')(request); 5 6// HTTP, HTTPS, or SOCKS proxy to use 7var proxy = process.env.http_proxy || 'http://168.63.43.102:3128'; 8 9request 10 .get(process.argv[2] || 'https://encrypted.google.com/') 11 .proxy(proxy) 12 .end(onresponse); 13 14function onresponse (err, res) { 15 if (err) { 16 console.log(err); 17 } else { 18 console.log(res.status, res.headers); 19 console.log(res.body); 20 } 21}
(The MIT License)
Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
No vulnerabilities found.
No security vulnerabilities found.