Skip to content

Instantly share code, notes, and snippets.

@IPRIT
Created April 11, 2015 00:05
Show Gist options
  • Save IPRIT/63c916dab98785144eed to your computer and use it in GitHub Desktop.
Save IPRIT/63c916dab98785144eed to your computer and use it in GitHub Desktop.
var http = require('http');
module.exports = function(url, callback) {
http.get(url, function(res) {
res.setEncoding('utf8');
res.on('data', function(buf) {
callback(null, buf.toString());
});
res.on('error', function(e) {
callback(err);
});
})
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment