Skip to content

Instantly share code, notes, and snippets.

@bmorelli25
Created October 24, 2017 15:43
Show Gist options
  • Save bmorelli25/4caee17d29dd15c93cd6cee2f9d45a93 to your computer and use it in GitHub Desktop.
Save bmorelli25/4caee17d29dd15c93cd6cee2f9d45a93 to your computer and use it in GitHub Desktop.
scrape.js part 1
const puppeteer = require('puppeteer');
let scrape = async () => {
// Actual Scraping goes Here...
// Return a value
};
scrape().then((value) => {
console.log(value); // Success!
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment