Help customers decide which book to purchase by selecting their preferred genre.
Server: Node, Puppeteer, TypeScript
Clone the project
git clone git@github.com:the-code-studio/matterway-omar-challenge.git
Go to the project directory
cd matterway-omar-challenge
Make sure that 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
...
});