Skip to content

Instantly share code, notes, and snippets.

@seantimm
seantimm / proxy.js
Last active September 8, 2015 23:14 — forked from a2ndrade/proxy.js
proxy
const httpProxy = require('http-proxy');
module.exports = function(target) {
const proxy = httpProxy.createProxyServer({
target: target,
secure: false,
changeOrigin: true,
auth: 'user:password'
});