Help customers decide which book to purchase by selecting their preferred genre.
Server: Node, Puppeteer, TypeScript
Clone the project
git clone git@github.com:FxOmar/D_Book_To_P.git
Go to the project directory
cd D_Book_To_P
Make sure you're using nodev14.18.2
Install dependencies
npm install
Start the server
npm run dev
If you're not using MacOs, unfortunately, you have to change a piece of code
const browser: Browser = await puppeteer.launch({
...
executablePath:
"/path/chrome", // Chnage this with your Google Chrome path
...
});