{"id":20590153,"url":"https://github.com/aashahin/wadaq-restful-api-lms","last_synced_at":"2026-05-01T17:35:56.750Z","repository":{"id":163193117,"uuid":"610271893","full_name":"aashahin/Wadaq-RESTful-API-LMS","owner":"aashahin","description":"Wadaq RESTful Api for school management system","archived":false,"fork":false,"pushed_at":"2023-07-10T08:49:09.000Z","size":124,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-05T02:38:36.714Z","etag":null,"topics":["express","lms","mongodb","nodejs","rest-api"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aashahin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2023-03-06T12:50:37.000Z","updated_at":"2023-07-18T09:23:52.000Z","dependencies_parsed_at":"2024-05-05T13:47:04.944Z","dependency_job_id":null,"html_url":"https://github.com/aashahin/Wadaq-RESTful-API-LMS","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aashahin/Wadaq-RESTful-API-LMS","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aashahin%2FWadaq-RESTful-API-LMS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aashahin%2FWadaq-RESTful-API-LMS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aashahin%2FWadaq-RESTful-API-LMS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aashahin%2FWadaq-RESTful-API-LMS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aashahin","download_url":"https://codeload.github.com/aashahin/Wadaq-RESTful-API-LMS/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aashahin%2FWadaq-RESTful-API-LMS/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32507091,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["express","lms","mongodb","nodejs","rest-api"],"created_at":"2024-11-16T07:34:19.551Z","updated_at":"2026-05-01T17:35:56.729Z","avatar_url":"https://github.com/aashahin.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# **Wadaq RESTful Api for school management system**\n\n## Tech Stack\n\n**Server:** Node, Express, MongoDB, Mongoose, JWT\n\n**Modules:** bcryptjs,express-validator,helmet,hpp,compression,hpp,toobusy-js,xss-clean\n\n# API FEATURES\n\n- Authentication \u0026 Authorization\n- CRUD operations\n- Routes Protection\n- Subjects\n- ClassLevels\n- AcademicYear\n- AcademicTerm\n- YearGroups\n- Exams\n- Questions\n- Programs\n- Logged Users (Admin,Teacher,Student)\n- Permissions (Admin,Teacher,Student)\n- Log out if the password is changed\n- Search\n- Pagination\n- More to explore!\n\n## Run Locally\n\nClone the project\n\n```bash\n  git clone https://github.com/aashahin/Wadaq-RESTful-API-LMS.git\n```\n\nGo to the project directory\n\n```bash\n  cd my-project\n```\n\nInstall dependencies\n\n```bash\n  npm install\n```\n\nStart the server\n\n```bash\n  npm run server\n```\n\n## Environment Variables\n\nTo run this project, you will need to add the following environment variables to your config.env file\n\n# Server Settings\n\n```\nPORT=5000\n\nNODE_ENV=development\n\nBASE_URL=https://example.com\n```\n\n# Database\n\n```\nMONGO_URL=mongodb://localhost:0000/ecommerces\n```\n\n# JWT\n\n```\nSECRET_KEY='as#ewronh$%@65*-'\nEXPIRESIN=90d\n```\n\n# API Authentication\n\nSome endpoints may require authentication for example. To create a create/delete/update, you need to register your API client and obtain an access token.\n\nThe endpoints that require authentication expect a bearer token sent in the `Authorization header`.\n\n**Example**:\n\n`Authorization: Bearer YOUR TOKEN`\n\n## Register a new API client\n\n```http\nPOST /api/v1/auth/staff/admin/signup\n```\n\nThe request body needs to be in JSON format.\n\n# **Examples**\n\n## **User Login**\n\n```http\nPOST /api/v1/staff/admin/login\n```\n\n| Parameter        | Type     | Description   | Required |\n| :--------------- | :------- | :------------ | :------- |\n| `authentication` | `string` | Your token    | no       |\n| `email`          | `string` | Your email    | yes      |\n| `password`       | `string` | Your password | yes      |\n\n\n## **[View on Postman](https://www.postman.com/orbital-module-geologist-396425/workspace/wadaq-school-management-system)**\n\n[![Logo](https://pub-ebc3292441104a07b54e254192a1b246.r2.dev/icons8-postman-is-the-only-complete-api-development-environment-96.png)](https://www.postman.com/orbital-module-geologist-396425/workspace/wadaq-school-management-system)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faashahin%2Fwadaq-restful-api-lms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faashahin%2Fwadaq-restful-api-lms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faashahin%2Fwadaq-restful-api-lms/lists"}