Advice Needed: How to properly connect React to MongoDB Advice Needed: How to properly connect React to MongoDB mongodb mongodb

Advice Needed: How to properly connect React to MongoDB


You have to create endpoint (server side) can be Node can be something else like php, and there you will accept request and insert the data to your database. Your React app will make ajax call to the server and the server will put the data to the database

If you want to do that with express you can create simple express app with one route that will get the data from the client and will send that to MongoDB. you dont have to use Mongoose you can use MongoDB driver or outer to simply send the data to MongoDB.