{"id":28754460,"url":"https://github.com/libinthankayathil/wd201-learning-management-system","last_synced_at":"2026-04-11T11:33:02.142Z","repository":{"id":296825310,"uuid":"993627742","full_name":"LibinThankayathil/wd201-learning-management-system","owner":"LibinThankayathil","description":"A full-stack web-based Learning Management System (LMS) built with Node.js, Express, and Sequelize. This platform enables educators to create and manage courses while allowing students to enroll and track their learning progress.","archived":false,"fork":false,"pushed_at":"2025-06-15T10:34:29.000Z","size":6094,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-15T11:23:52.241Z","etag":null,"topics":["ejs-templates","expressjs","local-strategy","nodejs","passportjs","postgresql","sequelize-orm","tailwind-css"],"latest_commit_sha":null,"homepage":"https://learnhub-n6ru.onrender.com","language":"EJS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/LibinThankayathil.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-31T06:54:52.000Z","updated_at":"2025-06-15T10:34:32.000Z","dependencies_parsed_at":"2025-06-15T11:39:18.316Z","dependency_job_id":null,"html_url":"https://github.com/LibinThankayathil/wd201-learning-management-system","commit_stats":null,"previous_names":["libinthankayathil/wd201-project","libinthankayathil/wd201-learning-management-system"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/LibinThankayathil/wd201-learning-management-system","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LibinThankayathil%2Fwd201-learning-management-system","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LibinThankayathil%2Fwd201-learning-management-system/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LibinThankayathil%2Fwd201-learning-management-system/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LibinThankayathil%2Fwd201-learning-management-system/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LibinThankayathil","download_url":"https://codeload.github.com/LibinThankayathil/wd201-learning-management-system/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LibinThankayathil%2Fwd201-learning-management-system/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260269457,"owners_count":22983648,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ejs-templates","expressjs","local-strategy","nodejs","passportjs","postgresql","sequelize-orm","tailwind-css"],"created_at":"2025-06-17T01:09:29.165Z","updated_at":"2025-10-16T08:22:16.220Z","avatar_url":"https://github.com/LibinThankayathil.png","language":"EJS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🎓 Learning Management System\n\nA full-stack web-based Learning Management System (LMS) built with Node.js, Express, and Sequelize. This platform enables educators to create and manage courses while allowing students to enroll and track their learning progress.\n\n## 🌐 Live Demo\n\nThe application is deployed and available at: [LearnHub](https://learnhub-n6ru.onrender.com)\n\n## ✨ Features\n\n### 👨‍🏫 For Educators\n- Create and manage courses\n- Add chapters and pages to courses\n- Track student enrollment and progress\n- View detailed reports of student performance\n- Manage course content with a user-friendly interface\n\n### 👨‍🎓 For Students\n- Browse available courses\n- Enroll in courses\n- Track learning progress\n- Mark pages as complete\n- View completion statistics\n- Navigate through course content seamlessly\n\n## 🛠️ Tech Stack\n\n- **Backend**: Node.js, Express.js\n- **Database**: PostgreSQL with Sequelize ORM\n- **Frontend**: EJS templates with Tailwind CSS\n- **Authentication**: Passport.js with local strategy\n- **Styling**: Tailwind CSS for modern, responsive design\n- **Icons**: Font Awesome for beautiful icons\n\n## 📋 Prerequisites\n\nBefore you begin, ensure you have the following installed:\n- Node.js (v14 or higher)\n- PostgreSQL\n- npm or yarn\n\n## 🚀 Installation\n\n1. Clone the repository:\n```bash\ngit clone \u003crepository-url\u003e\ncd learning-management-system\n```\n\n2. Install dependencies:\n```bash\nnpm install\n```\n\n3. Set up the database:\n   - Create a PostgreSQL database\n   - Update the database configuration in `config/config.json`\n\n4. Run database migrations:\n```bash\nnpx sequelize-cli db:migrate\n```\n\n5. Start the development server:\n```bash\nnpm start\n```\n\nThe application will be available at `http://localhost:3000`\n\n## 📁 Project Structure\n\n```\n├── config/             # Database configuration\n├── migrations/         # Database migrations\n├── models/            # Sequelize models\n├── public/            # Static files\n├── routes/            # Route handlers\n├── views/             # EJS templates\n│   ├── auth/         # Authentication views\n│   ├── courses/      # Course-related views\n│   ├── educator/     # Educator dashboard views\n│   └── student/      # Student dashboard views\n├── app.js            # Main application file\n└── package.json      # Project dependencies\n```\n\n## 💡 Usage\n\n### 👨‍🏫 Educator Account\n1. Sign up as an educator\n2. Create new courses\n3. Add chapters and pages to your courses\n4. Monitor student progress through the dashboard\n\n### 👨‍🎓 Student Account\n1. Sign up as a student\n2. Browse available courses\n3. Enroll in courses\n4. Track your progress as you complete course content\n\n## 🔍 Features in Detail\n\n### 📚 Course Management\n- Create courses with titles and descriptions\n- Organize content into chapters\n- Add pages with rich content\n- Track enrollment numbers\n\n### 📊 Progress Tracking\n- Students can mark pages as complete\n- Progress bars show completion percentage\n- Last active timestamps\n- Detailed progress reports for educators\n\n### 🎨 User Interface\n- Modern, responsive design\n- Intuitive navigation\n- Progress visualization\n- Clean and professional look\n\n## 🤝 Contributing\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/AmazingFeature`)\n3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)\n4. Push to the branch (`git push origin feature/AmazingFeature`)\n5. Open a Pull Request\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flibinthankayathil%2Fwd201-learning-management-system","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flibinthankayathil%2Fwd201-learning-management-system","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flibinthankayathil%2Fwd201-learning-management-system/lists"}