Front end live project

I want live project in frontend(react js) which include connection with backend because i dont know how
frontend is connected with backend

Hi @athiramelekappil , please help this student out. Give him a project he can do. Maybe reach out to him personally and help him out in anyway you can.

1 Like

@suryamanilodhi ,

React is not communicating directly with MongoDB (via Mongoose). It interacts with node.js/express, which is the one that communicates with MongoDB.
First, we create a React app, and then for backend maintenance, we create APIs in node.js and express.js, which are running at a different port than our React app. For connecting React to the database (MongoDB), we integrate through APIs.

Check out this link:

1 Like