My first web application using the MERN (MongoDB Express React Node) stack.
A simple todo web application with MongoDB CRUD functionality for todo items. Source code developed from following The MERN Stack Tutorial – Building A React CRUD Application From Start To Finish by Sebastian on CodingTheSmartWay.com.
Prerequisite: Need to have Node installed.
Note: Running this application locally requires two terminal windows/tabs.
- Navigate to the
mern-todo-app/folder. - Install frontend dependencies:
npm install - Start up frontend:
npm start
- Navigate to the
backend/folder. - Install backend dependencies:
npm install - Start up backend:
nodemon server.js