node-google icon indicating copy to clipboard operation
node-google copied to clipboard

A Node.js module to search and scrape Google.

Results 30 node-google issues
Sort by recently updated
recently updated
newest added

Hi @jprichardson , First thanks for this awesome project. But I have a small issue with this module in Meteor. When I try to use proxy in request option sometimes...

Using this inside company firewall may not work because I cannot go to https://www.google.com. Can we have option for `http` here? ``` var URL = 'https://www.google.%s/search?hl=%s&q=%s&start=%s&sa=N&num=%s&ie=UTF-8&oe=UTF-8&gws_rd=ssl' ``` https://github.com/jprichardson/node-google/blob/faf57d24bde301a7249d16a1c1589c5506a56ccf/lib/google.js#L11

Can't figure out why I'm only getting undefined results when running the test? Not even getting an error, just nothing. This is what i ran -- var google = require(...

when you google something about date, time, currency, weather, google will provide the answer for you, like 'what time is it?' 'usd eur' what do you think about adding this...

Hi, is possible return also de body of the page, to do more scraping? like get the content on the left of the page of google? can be done easly...

https://history.google.com/history/ Shouldn't this be hidden? Or in a deep mode of incognito?

Awesome module but defnitly could use support for enabling / disabling safe search :blush:

Now that this module can google different Google versions (ru, eu, etc) and can support proxies, it makes sense to have a factory method.

``` javascript var google = require('google'); google.lang = 'ru'; google.tld = 'com.ua'; google('ПУЕТ', function(err, next, links){ console.log(err, next, links); }); ``` ``` [ { title: 'Результаты поиска на Картах Google...

Handle cookies so that you can retrieve more than 10 results per query. This should be possible with `request` since it has a cookie support.