Skip to content

Instantly share code, notes, and snippets.

@rosskukulinski
Created March 30, 2015 23:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rosskukulinski/7ba94fad5c30bb939262 to your computer and use it in GitHub Desktop.
Save rosskukulinski/7ba94fad5c30bb939262 to your computer and use it in GitHub Desktop.
var request = require('request');
var http = require('http');
var server = http.createServer(function(req, res) {
var query = request('https://getyodlr.com/api/config');
query.pipe(res);
});
server.listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment