google-search-trends
v0.0.2
Published
Get top 20 google search trends grouped by countries
Downloads
1
Readme
google-search-trends
Get top 20 google search trends for each country. It includes 47 countries.
$ npm install google-search-trends
Usage:
var gst = require('google-search-trends');
gst.result(function(err, res){
if(!err)
console.log(res);
});
Output
The output will be something like
{ '1':
[ 'Frank Gore',
'Ndamukong Suh',
'Chris Johnson',
'Womens Day',
'Orlando City Soccer',
'Jeremy Maclin',
'International Women S Day',
'Daylight Savings Time',
'Selma',
'Chris Hemsworth',
'Adrien Broner',
'Daylight Savings Time 2015',
'Unfinished Business',
'Unbreakable Kimmy Schmidt',
'Syracuse basketball',
'The Second Best Exotic Marigold Hotel',
'Jared Leto',
'Melissa Benoist',
'Harrison Ford',
'Kim Kardashian' ],
'3':
[ 'Moto Turbo',
'Bangladesh Cricket Team',
'Aus vs SL',
'Vinod Mehta',
'Anushka Sharma',
'Real Madrid',
'Barcelona',
'International Women S Day',
'Happy Womens Day',
'Saina Nehwal',
'Womens Day Images',
'Ireland vs Zimbabwe',
'Womans Day',
'Women S Day 2015',
'cricket',
'Pakistan cricket team',
'When Is Holi',
'Fifty Shades of Grey',
'Harrison Ford',
'Enakkul Oruvan' ],
...
...
}