ScrapeMaster is a web scrapper which scrapes various online platforms. It is built using node.js and puppeteer.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
Your machine should have npm (or yarn) and Node.js installed to use it locally.
- First fork the repo to your account.
Go to the forked repo and clone it to your local machine:
git clone https://github.com/Your_Username/ScrapeMaster.gitThis will make a copy of the code to your local machine.
- Now move to the
ScrapeMasterdirectory.
cd ScrapeMaster- Now check the remote of your local code by:
git remote -vThe response should look like:
origin https://github.com/Your_Username/ScrapeMaster.git (fetch)
origin https://github.com/Your_Username/ScrapeMaster.git (push)To add upstream to remote, run:
git remote add upstream https://github.com/Aman-Codes/ScrapeMaster.gitAgain run git remote -v, the response should look like:
origin https://github.com/Your_Username/ScrapeMaster.git (fetch)
origin https://github.com/Your_Username/ScrapeMaster.git (push)
upstream https://github.com/Aman-Codes/ScrapeMaster (fetch)
upstream https://github.com/Aman-Codes/ScrapeMaster (push)- Once the remote is set, install all the necessary dependencies by the following command:
npm installRun the below command to start the server:
npm run devWe really like contributions in several forms, see CONTRIBUTING.md and CODE_OF_CONDUCT.md