https://github.com/softengmuhammadali/edu-zone
A modern, full-stack Learning Management System (LMS) built using the MERN stack, designed to support students, teachers, and administrators with a seamless learning experience.
https://github.com/softengmuhammadali/edu-zone
express frontend mongodb nodejs react responsive-web-design tailwind-css
Last synced: about 1 year ago
JSON representation
A modern, full-stack Learning Management System (LMS) built using the MERN stack, designed to support students, teachers, and administrators with a seamless learning experience.
- Host: GitHub
- URL: https://github.com/softengmuhammadali/edu-zone
- Owner: SoftEngMuhammadAli
- Created: 2025-06-14T11:10:12.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-06-24T23:11:13.000Z (about 1 year ago)
- Last Synced: 2025-06-25T00:20:42.660Z (about 1 year ago)
- Topics: express, frontend, mongodb, nodejs, react, responsive-web-design, tailwind-css
- Language: JavaScript
- Homepage: https://edu-zone-eight.vercel.app/
- Size: 3.76 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🎓 EduZone – MERN Stack LMS
**EduZone** is a modern, full-stack **Learning Management System (LMS)** built using the **MERN stack** — **MongoDB**, **Express.js**, **React.js**, and **Node.js**.
This monorepo includes both the **frontend client** and the **backend API**, designed to support students, teachers, and administrators with a seamless learning experience.
---
## 📁 Project Structure
```
EduZone/
├── client/ # React.js Client – LMS Frontend
├── server/ # Node.js + Express – Backend API
└── README.md # Project Overview & Setup Guide
```
---
## 🚀 Getting Started
### ✅ Prerequisites
Ensure the following tools are installed on your system:
- [Node.js](https://nodejs.org/) (v18 or later)
- [MongoDB](https://www.mongodb.com/cloud/atlas) (local or cloud)
- [Git](https://git-scm.com/)
---
## 🔧 Installation & Setup
### 1. Clone the Repository
```bash
git clone https://github.com/SoftEngMuhammadAli/EduZone.git
cd EduZone
```
---
### 2. Setup & Run the Backend
```bash
cd server
npm install
npm run dev
```
🔐 Create a `.env` file in the `server/` directory with the following content:
```env
PORT=5000
MONGO_URI=your_mongodb_connection_string
JWT_SECRET=your_jwt_secret_key
```
---
### 3. Setup & Run the Frontend
```bash
cd ../client
npm install
npm start
```
- Frontend: [http://localhost:3000](http://localhost:3000)
- Backend: [http://localhost:5000](http://localhost:5000)
Ensure both frontend and backend servers are running simultaneously.
---
## 💻 Tech Stack
| Layer | Technologies |
| --------- | --------------------------------------- |
| Frontend | React.js, React Router, Axios |
| Backend | Node.js, Express.js, JWT Authentication |
| Database | MongoDB, Mongoose |
| Dev Tools | Git, VS Code, Postman |
---
## ✨ Key Features
- 🔐 **JWT-based Authentication & Authorization**
- 📚 **Course Management** – Add, update, and remove courses
- 🧑🏫 **Role-Based Dashboards** – Separate interfaces for Admin, Teacher, and Student
- 📝 **Assignments & Quizzes** – Create and manage learning tasks
- 📊 **Progress Tracking** – Visualize student performance
---
## 🚧 Project Status
| Module | Status |
| ------------ | -------------- |
| Folder Setup | ✅ Completed |
| Backend API | ⚙️ In Progress |
| Frontend UI | ⚙️ In Progress |
---
## 🤝 Contributing
We welcome contributions from the community!
1. **Fork** the repository
2. **Create** your feature branch:
```bash
git checkout -b feature-name
```
3. **Commit** your changes:
```bash
git commit -m "Add feature"
```
4. **Push** the branch:
```bash
git push origin feature-name
```
5. **Open a Pull Request**
---
## 📄 License
This project is licensed under the [MIT License](LICENSE).
---