Skip to content

Conversation

@samuelfaj
Copy link

@samuelfaj samuelfaj commented Apr 20, 2019

I've just added promise support.
Now you have a final callback.

const scraper = require("samuelfaj-google-scraper");
var options = {
    query: 'nodejs',
    limit: 10
};

scraper.search(options, function(err, url, meta) {
    // This is called for each result
    if(err) throw err;
    console.log(url);
    console.log(meta.title);
    console.log(meta.meta);
    console.log(meta.desc)
}).then((results) => {
    console.log("All searches ended", results);
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant