Question
I need code 1. Express App with MongoDB Create an Express Rest API which exposes CRUD functionalities for managing Students. Create a student model that
I need code
1. Express App with MongoDB
Create an Express Rest API which exposes CRUD functionalities for managing Students. Create a student model that describes student information (student number, first name, last name, address, city, phone number, email, program). The information should be stored in a MongoDB database.
2. React App
Create a React front end that allows users to search, add, edit or delete the student records. React app must use the express api that you have developed. You must use routes to achieve these requirements. There must be a home page where all students are listed and against each students, you must have edit, delete buttons. Home page must also have add student button and a find button with input text box to find a student based on ID. When delete button is clicked app should display a popup model asking You are about to delete a student record. Are you sure?. When clicks on confirm in popup model, react app must send a http delete request to the express api. Apply MVC principles for the Express API. Use functional components, composition, and React Hooks for the React front-end. Design a nice and friendly UI.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started