Created
November 24, 2012 11:26
-
-
Save Usse/4139269 to your computer and use it in GitHub Desktop.
Web scraping in node.js
This file contains hidden or 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"); | |
request({ | |
uri: "http://www.google.com", | |
}, function(error, response, body) { | |
console.log(body); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment