{"id":48321845,"url":"https://github.com/msanchariii/evolver","last_synced_at":"2026-04-05T00:42:51.705Z","repository":{"id":297388444,"uuid":"907998845","full_name":"msanchariii/evolver","owner":"msanchariii","description":"A robust online examination platform.","archived":false,"fork":false,"pushed_at":"2026-03-08T08:14:10.000Z","size":2141,"stargazers_count":4,"open_issues_count":13,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-08T12:45:44.464Z","etag":null,"topics":["admin-dashboard","admin-panel","authentication","chakra-ui","expre","jwt-authentication","nodejs","postgres","prisma","react","vite"],"latest_commit_sha":null,"homepage":"https://evolver-six.vercel.app","language":"TypeScript","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/msanchariii.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-12-24T20:30:21.000Z","updated_at":"2026-03-08T08:14:13.000Z","dependencies_parsed_at":"2025-08-03T00:09:06.809Z","dependency_job_id":null,"html_url":"https://github.com/msanchariii/evolver","commit_stats":null,"previous_names":["msanchariii/evolver"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/msanchariii/evolver","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/msanchariii%2Fevolver","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/msanchariii%2Fevolver/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/msanchariii%2Fevolver/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/msanchariii%2Fevolver/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/msanchariii","download_url":"https://codeload.github.com/msanchariii/evolver/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/msanchariii%2Fevolver/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31420748,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T00:25:07.052Z","status":"ssl_error","status_checked_at":"2026-04-05T00:25:05.923Z","response_time":60,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["admin-dashboard","admin-panel","authentication","chakra-ui","expre","jwt-authentication","nodejs","postgres","prisma","react","vite"],"created_at":"2026-04-05T00:42:51.637Z","updated_at":"2026-04-05T00:42:51.699Z","avatar_url":"https://github.com/msanchariii.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Evolver\n\nA robust online examination platform built with Node.js, Express, React, TypeScript, and PostgreSQL. It features role-based access control for Controller, Teacher, and Student users, complete with an Admin panel, exam management, result handling, and user profile functionality.\n\n### Database Model:\n\n\u003cimg src=\"./backend/prisma/prismaliser.png\" /\u003e\n\n---\n\n## 📂 Features\n\n### Common\n- JWT-based authentication and secure, role-based access control.\n- User profiles with editable details and secure login/signup.\n- Support for light/dark themes using Chakra UI.\n\n### Controller (Admin)\n- Manage Teachers \u0026 Students: add, view, edit users.\n- Manage Subjects \u0026 Exams.\n- View \u0026 export student exam results.\n\n### Teacher\n- Create, edit, and manage exams for their subjects.\n- Review student exam results.\n- Update their own profile information.\n\n### Student\n- View list of available exams.\n- Take exams through intuitive exam portal.\n- View scores and attempt history.\n- Edit personal profile details.\n\n\n---\n\n## 🔧 Tech Stack\n\n- **Backend**: Node.js, Express, Prisma ORM\n- **Frontend**: React (via Vite), Chakra UI\n- **Database**: PostgreSQL (hosted on Neon)\n- **Authentication**: JSON Web Tokens (JWT)\n- **Hosting**:\n  - Frontend: Vercel or Netlify\n  - Backend: Render\n  - Database: Neon DB\n \n---\n\n## 🔧 Setup \u0026 Run\n\n### Prerequisites\n- Node.js (\u003e=14), npm/yarn\n- PostgreSQL database (e.g. a Neon DB)\n\n### Backend\n```bash\ncd backend\nnpm install\ncp .env.example .env      # configure DATABASE_URL, JWT_SECRET, etc.\nnpx prisma migrate dev    # setup database schema\nnpm run dev               # start server (e.g. http://localhost:4000)\n```\n\n### Frontend\n```bash\ncd frontend\nnpm install\ncp .env.example .env      # configure REACT_APP_API_URL, others\nnpm run dev               # start app (e.g. http://localhost:3000)\n```\n\n---\n\n## 📊 Database Schema\n\nBuilt with Prisma ORM. Key models include:\n- **User** (controller, teacher, student)\n- **Subject**\n- **Exam**\n- **Question \u0026 Option**\n- **Result / Score**\n\nRelationships enforce ownership and data consistency—e.g., only teachers/controllers can manage their own exams; students only have access to their permissible exams.\n\n---\n\n## ✅ To‑Do / Planned Enhancements\n\n- Fix sign‑up/login flow consistency.\n- Roll number authentication for students (instead of email).\n- Random password generation and automated emailing for new users.\n- Bulk student uploads via CSV.\n- Expand student-specific features (e.g. dashboards, analytics).\n- Add admission-year and branch fields in student profiles.\n- Use refined routing to secure user access per role.\n\nThese are already listed as open issues in the repo.\n\n---\n\n\n### ✅ Summary\n\n**Evolver** offers a comprehensive, role-driven examination workflow:\n- Admin controllers can manage all entities.\n- Teachers can design exams and review student performance.\n- Students can take exams and track results.\n\nWith its modular architecture, Chakra-based UI, and PostgreSQL + Prisma backend, it’s well-suited for educational institutions wanting to deploy a customizable online testing platform.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmsanchariii%2Fevolver","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmsanchariii%2Fevolver","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmsanchariii%2Fevolver/lists"}