Skip to content

Latest commit

 

History

History
52 lines (34 loc) · 911 Bytes

README.md

File metadata and controls

52 lines (34 loc) · 911 Bytes

JS Engineer Tech Challenge

Help customers decide which book to purchase by selecting their preferred genre.

Demo

Watch demo

Tech Stack

Server: Node, Puppeteer, TypeScript

Run Locally

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

Appendix

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
    ...
  });