Created
March 30, 2015 23:40
-
-
Save rosskukulinski/7ba94fad5c30bb939262 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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