Skip to content

Instantly share code, notes, and snippets.

@baptistemanson
Created February 28, 2020 04:59
Show Gist options
  • Save baptistemanson/a6f51e83b95ba7409a0e99c00c0a8ee6 to your computer and use it in GitHub Desktop.
Save baptistemanson/a6f51e83b95ba7409a0e99c00c0a8ee6 to your computer and use it in GitHub Desktop.
async function scrapeProduct (url) {
// the same code as you have ...
return {srcText, price, title};
}
async function main() {
const results = await scrapeProduct("...");
// here you can do something with results = {srcText, price, title};
}
main();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment