Skip to content

Instantly share code, notes, and snippets.

View paramsinghvc's full-sized avatar
💭
I may be slow to respond.

Param Singh paramsinghvc

💭
I may be slow to respond.
View GitHub Profile
@tudorilisoi
tudorilisoi / proxy.js
Last active February 5, 2021 12:52
A https proxy server for external URLs
//a modified version of a gist ...which I forgot the URL of
var url = require('url')
, http = require('http')
, https = require('https');
var fs = require('fs');
var PORT = process.argv[2] || 443;