Skip to content

Instantly share code, notes, and snippets.

@thebergamo
Forked from afucher/gist:1b59c976aa41a1af6621
Last active August 29, 2015 14:16
Show Gist options
  • Save thebergamo/d08ce423c5dbfbfc88d0 to your computer and use it in GitHub Desktop.
Save thebergamo/d08ce423c5dbfbfc88d0 to your computer and use it in GitHub Desktop.
express.get('/', function(req, res){
http.get('www.outrolugar.com.br/api/', function(err, response){
if(err)
res.end(err);
res.end(resp.body);
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment