Skip to content

Instantly share code, notes, and snippets.

@jeromewu
Created February 11, 2016 08:17
Show Gist options
  • Save jeromewu/7591e17d41de8560da6e to your computer and use it in GitHub Desktop.
Save jeromewu/7591e17d41de8560da6e to your computer and use it in GitHub Desktop.
express nodes
var request = require('request');
app.use('/api', function(req, res) {
var url = apiUrl + req.url;
req.pipe(request(url)).pipe(res);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment