Initial commit
This commit is contained in:
commit
22af9288e2
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
node_modules
|
38
index.js
Normal file
38
index.js
Normal 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
14
package.json
Normal 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"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user