Last active
March 9, 2023 21:54
-
-
Save hendrixroa/88daff78f410f36f7fe649c0a99fc9d6 to your computer and use it in GitHub Desktop.
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
| export class Scraper { | |
| protected name: string; | |
| protected baseURL: string; | |
| protected browser = new HeadlessBrowser(); | |
| constructor() { | |
| this.name = 'Scraper'; | |
| this.baseURL = 'https://github.com/trending'; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment