Skip to content

Instantly share code, notes, and snippets.

@tastywheat
Created August 14, 2016 00:59
Show Gist options
  • Save tastywheat/f08a3bdc757f254093bbcc7b96e5394f to your computer and use it in GitHub Desktop.
Save tastywheat/f08a3bdc757f254093bbcc7b96e5394f to your computer and use it in GitHub Desktop.
express proxy to webpack server
var app = express();
// proxy the request to webpack server
app.use(proxy(url.parse('http://localhost:3000')));
app.listen(3001, function (err) {
if (err) {
console.error(err);
} else {
console.log('proxy listening on 3001');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment