Skip to content

Instantly share code, notes, and snippets.

@Usse
Created November 24, 2012 11:26
Show Gist options
  • Save Usse/4139269 to your computer and use it in GitHub Desktop.
Save Usse/4139269 to your computer and use it in GitHub Desktop.
Web scraping in node.js
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