{"id":21203999,"url":"https://github.com/dev-adnani/scretask-backend","last_synced_at":"2026-04-13T10:32:19.344Z","repository":{"id":167726401,"uuid":"497257193","full_name":"Dev-Adnani/ScreTask-Backend","owner":"Dev-Adnani","description":"ScreTask API For Task Management Related Stuff. Developers may utilise this API to support the backend of their apps by coding them in the tech stack of their choosing. ","archived":false,"fork":false,"pushed_at":"2022-06-14T12:24:52.000Z","size":158,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-14T22:45:55.037Z","etag":null,"topics":["api","api-backend","backend","expressjs","javascript","mongodb","moongose","nodejs-api","nodejs-server","typescript"],"latest_commit_sha":null,"homepage":"","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/Dev-Adnani.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}},"created_at":"2022-05-28T08:20:21.000Z","updated_at":"2023-03-04T07:37:14.000Z","dependencies_parsed_at":null,"dependency_job_id":"d8171f8c-a195-4430-8127-34df4b80f5d8","html_url":"https://github.com/Dev-Adnani/ScreTask-Backend","commit_stats":null,"previous_names":["dev-adnani/scretask-backend"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Dev-Adnani/ScreTask-Backend","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dev-Adnani%2FScreTask-Backend","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dev-Adnani%2FScreTask-Backend/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dev-Adnani%2FScreTask-Backend/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dev-Adnani%2FScreTask-Backend/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Dev-Adnani","download_url":"https://codeload.github.com/Dev-Adnani/ScreTask-Backend/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dev-Adnani%2FScreTask-Backend/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31749047,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T09:16:15.125Z","status":"ssl_error","status_checked_at":"2026-04-13T09:16:05.023Z","response_time":93,"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":["api","api-backend","backend","expressjs","javascript","mongodb","moongose","nodejs-api","nodejs-server","typescript"],"created_at":"2024-11-20T20:28:27.223Z","updated_at":"2026-04-13T10:32:19.322Z","avatar_url":"https://github.com/Dev-Adnani.png","language":"TypeScript","readme":"## ScreTask\n\n-  ScreTask API For Task Management Related Stuff. Developers may utilise this API to support the backend of their apps by coding them in the tech stack of their choosing. \n## Tech Stack\n\n**Database :** MongoDB\n\n**Server :** Node, Express , TypeScript\n\n**Frontend :** [Flutter App](https://github.com/Dev-Adnani/ScreTask-Flutter)\n\n\n## Environment Variables\n\nTo run this project, you will need to add the following environment variables to your .env file\n\n`PORT`\n\n`MONGODB_URL`\n\n`JWT_SECRET`\n\n`CUSTOM_EMAIL`\n\n`CUSTOM_PASS`\n\n\n## Run Locally\n\nClone the project\n\n```bash\n  git clone https://github.com/Dev-Adnani/ScreTask-Backend\n```\n\nGo to the project directory\n\n```bash\n  cd ScreTask-Backend\n```\n\nInstall dependencies\n\n```bash\n  npm i\n```\n\nStart the server\n\n```bash\n  npm run dev\n```\n\n\n## API Reference\n\n- [Base Url](https://scre-task.herokuapp.com/)\n- Authorization Key : \"Test\"\n\n\n### Authentication\n\n#### Send Email Verification\n\n```http\n  POST /auth/send-email-verification\n```\n\n| Parameter | Type     | Description                       |\n| :-------- | :------- | :-------------------------------- |\n| `useremail` | `string` | **Required**. User's Email |\n\n\n#### Sign Up \n\n```http\n  POST auth/signup\n```\n\n| Parameter | Type     | Description                |\n| :-------- | :------- | :------------------------- |\n| `useremail` | `string` | **Required**. User's Email |\n| `userpassword` | `string` | **Required**. User's Password |\n| `username` | `string` | **Required**. User's Name |\n| `userphoto` | `string` | **Required**. User's Profile URL |\n| `secretcode` | `string` | **Required**. Secret Code Generated By Server |\n| `secretcodeinput` | `string` | **Required**. Secret Code Enterted By User |\n\n#### Login\n\n```http\n  POST /auth/login\n```\n\n| Parameter | Type     | Description                       |\n| :-------- | :------- | :-------------------------------- |\n| `useremail` | `string` | **Required**. User's Email |\n| `userpassword` | `string` | **Required**. User's Password |\n\n\n#### Decode User Data\n\n```http\n  GET /auth/verify\n```\n\n| Parameter | Type     | Description                       |\n| :-------- | :------- | :-------------------------------- |\n| `tokenData` | `authorization` | **Required**. JWT  |\n\n### Tasks\n\n#### Add Tasks\n\n```http\n  POST task/add\n```\n\n| Parameter | Type     | Description                |\n| :-------- | :------- | :------------------------- |\n| `user_id` | `string` | **Required**. User's ID |\n| `task_title` | `string` | **Required**. Task's Title |\n| `task_desc` | `string` | **Required**. Task's Description |\n| `task_type` | `string` | **Required**. Task's Types |\n| `task_date` | `string` | **Required**. Task's Date |\n| `task_completed` | `boolean` | **Required**. Task's Completed Status |\n\n\n#### Get Tasks\n\n```http\n  GET task/:userId\n```\n\n| Parameter | Type     | Description                |\n| :-------- | :------- | :------------------------- |\n| `userId` | `Parameter` | **Required**. User's ID |\n\n#### Get Completed Task Count\n\n```http\n  GET task/count/:userId\n```\n\n| Parameter | Type     | Description                |\n| :-------- | :------- | :------------------------- |\n| `userId` | `Parameter` | **Required**. User's ID |\n\n#### Get Detail Task [Particular Task]\n\n```http\n  GET task/detail/:taskId\n```\n\n| Parameter | Type     | Description                |\n| :-------- | :------- | :------------------------- |\n| `task_id` | `Parameter` | **Required**. Task ID |\n\n\n#### Get Categories Type Of Task\n\n```http\n  POST task/taskType\n```\n\n| Parameter | Type     | Description                |\n| :-------- | :------- | :------------------------- |\n| `task_type` | `string` | **Required**. Task Types |\n| `user_id` | `string` | **Required**. User's ID |\n\n\n#### Update Tasks\n\n```http\n  PUT task/update\n```\n\n| Parameter | Type     | Description                |\n| :-------- | :------- | :------------------------- |\n| `task_id` | `Parameter` | **Required**. Task ID |\n| `task_title` | `string` | **Required**. Task's Title |\n| `task_desc` | `string` | **Required**. Task's Description |\n| `task_type` | `string` | **Required**. Task's Types |\n| `task_date` | `string` | **Required**. Task's Date |\n| `task_completed` | `boolean` | **Required**. Task's Completed Status |\n\n\n\n#### Delete Task\n\n```http\n  DELETE task/delete/:taskId\n```\n\n| Parameter | Type     | Description                |\n| :-------- | :------- | :------------------------- |\n| `task_id` | `Parameter` | **Required**. Task ID |\n\n\n\n\n## Authors\n\n- [@Dev-Adnani](https://github.com/Dev-Adnani)\n\n\n## Feedback\n\nIf you have any feedback, please reach out to us at devadnani26@gmail.com\n\n\n## License\n\n[MIT](https://choosealicense.com/licenses/mit/)\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdev-adnani%2Fscretask-backend","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdev-adnani%2Fscretask-backend","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdev-adnani%2Fscretask-backend/lists"}