Skip to content

Instantly share code, notes, and snippets.

@seishun
Created November 27, 2012 17: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 seishun/4155782 to your computer and use it in GitHub Desktop.
Save seishun/4155782 to your computer and use it in GitHub Desktop.
var link = 'http://google.com/search?q=1234&hl=ru';
require('superagent')
.get(link)
.end(function(res) {
var $ = require('cheerio').load(res.text);
var stats = $('#resultStats');
console.log(stats.text());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment