Skip to content

Modified Node.js https module that supports the CONNECT method, allowing you to connect to secure websites via a proxy server.

Notifications You must be signed in to change notification settings

milewise/node-https-proxied

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Example

var https = require('https-proxied');

var options = {
    host: 'encrypted.google.com',
    port: 443,
    path: '/',
    proxy: 'http://user:[email protected]:3128'
};

var req = https.get(options, function(res) {
    console.log(res.statusCode);
});
req.end();

About

Modified Node.js https module that supports the CONNECT method, allowing you to connect to secure websites via a proxy server.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published