CreateTodo.jsx, EditTodo.jsx & TodoList.jsx; the front-end primarily involved React (i.e. JSX and HTML/CSS). The CreateTodo.jsx creates and inserts a new to-do task into the database. Next, EditTodo.jsx modifies an existing to-do task inside the database. Finally, TodoList.jsx displays all to-do tasks from the database. Moving on to the back-end, it was set-up using Express/Node.js and MongoDB; the former was used for server routing to insert and retrieve data to and from the MongoDB database, respectively. MongoDB hosted the local database that contained the to-do tasks.cd into the backend directory and subsequently enter & "C:\Program Files\MongoDB\Server\4.2\bin\mongod.exe" --dbpath "./data/db" to run the MongoDB server and set the data directory.nodemon server.js into the terminal.npm start in the terminal.& "C:\Program Files\MongoDB\Server\4.2\bin\mongod.exe" --dbpath "./data/db".& "C:\Program Files\MongoDB\Server\4.2\bin\mongo.exe".Posted Mar 8, 2026
Developed a to-do list app using the MERN stack with full CRUD functionality.
0
0