Created
October 24, 2017 15:43
-
-
Save bmorelli25/4caee17d29dd15c93cd6cee2f9d45a93 to your computer and use it in GitHub Desktop.
scrape.js part 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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