Skip to content

Adding promise support#19

Open
samuelfaj wants to merge 1 commit intothibauts:masterfrom
samuelfaj:master
Open

Adding promise support#19
samuelfaj wants to merge 1 commit intothibauts:masterfrom
samuelfaj:master

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