Initial commit

This commit is contained in:
Marcus Noble 2016-04-14 05:46:04 +01:00
commit 22af9288e2
3 changed files with 53 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
node_modules

38
index.js Normal file
View File

@ -0,0 +1,38 @@
"use strict";
const request = require('request');
const http = require('http');
const url = require('url');
let PORT = process.env.PORT || 8000;
process.argv.forEach(function (arg) {
if(arg.indexOf('--port=') === 0) {
PORT = parseInt(arg.replace('--port=', ''), 10);
}
});
http.createServer((req, response) => {
let remoteURL = url.parse(req.url.substring(1));
if(!remoteURL.hostname || remoteURL.hostname === 'localhost') return response.end();
for(let key in req.headers) {
if(key.match(/host|cookie/ig)){
delete req.headers[key];
}
}
let config = {
url: remoteURL,
followAllRedirects: true,
method: req.method,
headers: req.headers
};
if(req.method !== 'HEAD') {
config.body = req;
}
request(config)
.on('error', () => response.end())
.pipe(response, {end:true});
}).listen(PORT);

14
package.json Normal file
View File

@ -0,0 +1,14 @@
{
"name": "corsproxy",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "MIT",
"dependencies": {
"request": "^2.71.0"
}
}