A platform that aims to connect the elderly in hospitals and caring organizations with verified university students for services such as lessons, pet companionship, and cooking/meal prep—building practical help and meaningful connection to solve aging problems.
——Group: Matcha_Kitty
├── frontend # use next.js(react) + tallwind CSS
│ ├── app
│ ├── about
│ ├── form
│ ├── login
│ └── servier
│ ├── components
│ └── Card
│ └── public
│ └── image
├── backend # use react + node.js + express
│ ├── server.js (link to mongoDB)
│ └── ...
├── README.md # Project documentation
└── candidates(for testing).json # an example data that can be import to MongoDB
- Front-End: -- Next.js(React)
- Back-End:
-- Node.js
>= 18.0.0-- MongoDB (Local MongoDB or MongoDB Compass GUI recommended)
cd frontend
npm install ...cd backend
npm install ...- react Web framework
- react-dom Web framework(DOM)
- next
- express Web framework
- mongoose MongoDB ODM
- cors Cross-origin resource sharing
Open the MongoDB Compass and connect localhost:27017. For testing, you can import the example data (candidates(for testing).json) in MongoDB.
cd backend
node server.jsBy default it runs at http://localhost:5000
cd frontend
npm run devBy default it runs at http://localhost:3000