Socket
Socket
Sign inDemoInstall

https-proxy-agent

Package Overview
Dependencies
4
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.3.5 to 0.3.6

test/ssl-cert-snakeoil.key

9

History.md
0.3.6 / 2015-07-06
==================
* package: update "extend" to v3
* package: update "mocha" to v2
* package: update "debug" to v2
* travis: test node v0.8, v0.10, and v0.12
* test: use ssl-cert-snakeoil self-signed SSL certs
0.3.5 / 2014-06-11

@@ -3,0 +12,0 @@ ==================

8

package.json
{
"name": "https-proxy-agent",
"version": "0.3.5",
"version": "0.3.6",
"description": "An HTTP(s) proxy `http.Agent` implementation for HTTPS",

@@ -26,7 +26,7 @@ "main": "https-proxy-agent.js",

"agent-base": "~1.0.1",
"debug": "~1.0.0",
"extend": "~1.2.1"
"debug": "2",
"extend": "3"
},
"devDependencies": {
"mocha": "~1.18.2",
"mocha": "2",
"proxy": "~0.2.3",

@@ -33,0 +33,0 @@ "semver": "~2.2.1"

@@ -51,4 +51,4 @@

var options = {
key: fs.readFileSync(__dirname + '/server.key'),
cert: fs.readFileSync(__dirname + '/server.crt')
key: fs.readFileSync(__dirname + '/ssl-cert-snakeoil.key'),
cert: fs.readFileSync(__dirname + '/ssl-cert-snakeoil.pem')
};

@@ -65,4 +65,4 @@ sslServer = https.createServer(options);

var options = {
key: fs.readFileSync(__dirname + '/server.key'),
cert: fs.readFileSync(__dirname + '/server.crt')
key: fs.readFileSync(__dirname + '/ssl-cert-snakeoil.key'),
cert: fs.readFileSync(__dirname + '/ssl-cert-snakeoil.pem')
};

@@ -69,0 +69,0 @@ sslProxy = Proxy(https.createServer(options));

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc