Frontend part of final project for The Complete Web Developer in 2023: Zero to Mastery course. Since the course is a bit dated and was updated through the years, the React frontend remained class-based. That version you can see here. In this version I try to convert it to newer hooks-based approach.
The point of the project is to make a React frontend, node.js backend and PostgreSQL database as a small full-stack app that uses Clarifai API for face detection. It has:
- login and registration pages
- homescreen with URL input box for fetching the picture in which you want to detect a face
- entries counter that counts how many times you searched for a face
How to use:
- Clone this repo
- Run
npm install
- Run
npm start
- You must add your own USER_ID, APP_ID and PAT keys in the
src/App.js
file to connect to Clarifai over REST endpoints.
Backend part is here.