- Notifications
You must be signed in to change notification settings - Fork17
Extract links from Google SERP
License
NotificationsYou must be signed in to change notification settings
jsnomad/Google-Scraper
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
GoogleScraper is a nodejs module to extract links from Google SERP.
The source is available for download fromGitHub.Alternatively, you can install using Node Package Manager (npm) or yarn:
npm install google-scraper yarn add google-scraper
constGoogleScraper=require('google-scraper');constoptions={keyword:"javascript",language:"fr",tld:"fr",results:100};constscrape=newGoogleScraper(options);scrape.getGoogleLinks.then(function(value){console.log(value);}).catch(function(e){console.log(e);})