{"id":16174583,"url":"https://github.com/niteshthori24198/task-management-app","last_synced_at":"2026-04-10T06:40:35.488Z","repository":{"id":199052587,"uuid":"701965382","full_name":"Niteshthori24198/Task-Management-App","owner":"Niteshthori24198","description":"This is a RESTful API for managing tasks. Users can create, retrieve, update, and delete tasks. It also includes optional features like authentication and rate limiting along with all user related crud operations.","archived":false,"fork":false,"pushed_at":"2023-10-09T07:55:48.000Z","size":21,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-13T13:16:14.794Z","etag":null,"topics":["bcrypt","expressjs","javascript","jwt","mongodb","nodejs"],"latest_commit_sha":null,"homepage":"https://task-management-app-niteshthori24198.vercel.app/","language":"JavaScript","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/Niteshthori24198.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}},"created_at":"2023-10-08T05:09:20.000Z","updated_at":"2023-10-11T19:26:17.000Z","dependencies_parsed_at":null,"dependency_job_id":"37216456-2bcf-461b-8e6e-fe8be04a2301","html_url":"https://github.com/Niteshthori24198/Task-Management-App","commit_stats":null,"previous_names":["niteshthori24198/task-management-app"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Niteshthori24198%2FTask-Management-App","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Niteshthori24198%2FTask-Management-App/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Niteshthori24198%2FTask-Management-App/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Niteshthori24198%2FTask-Management-App/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Niteshthori24198","download_url":"https://codeload.github.com/Niteshthori24198/Task-Management-App/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247631832,"owners_count":20970069,"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":["bcrypt","expressjs","javascript","jwt","mongodb","nodejs"],"created_at":"2024-10-10T04:25:26.680Z","updated_at":"2025-12-30T20:23:20.884Z","avatar_url":"https://github.com/Niteshthori24198.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# Task-Management-Api\n\nTask Management API\n\nThis is a RESTful API for managing tasks. Users can create, retrieve, update, and delete tasks. It also includes optional features like authentication and rate limiting along with all user related crud operations.\n\n## Table of Contents\n\n- Getting Started\n- Prerequisites\n- Installation\n- Usage\n- Running the API\n- Task structure\n- Endpoints\n- Authentication\n- Error Handling\n- Logging\n- Rate Limiting\n\n\n## Getting Started\n\nPrerequisites\nBefore you begin, ensure that you have met the following requirements :\n- Node.js\n- MongoDB\n\n\n## Clone this repository:\n\n- git clone https://github.com/Niteshthori24198/Task-Management-App \u003cbr/\u003e\n- cd task-management-app\n\n## Install dependencies:\n\nnpm install \u003cbr/\u003e\n\nAdd a .env file and add below three varibales:-\u003cbr/\u003e\nmongoURL=your mongodb atlas url \u003cbr/\u003e\n port=3001\u003cbr/\u003e\nSecretKey=\"\"\u003cbr/\u003e\n\n- Running the APP: \u003cbr/\u003e\n\n    npm run server \u003cbr/\u003e\n\n    The API will be accessible at http://localhost:3001 by default.\n\n    Deployment : https://task-management-app-niteshthori24198.vercel.app/\n\n## Task Structure\n\nEach task should have the following properties:\u003cbr/\u003e\n\n-   ID\u003cbr/\u003e\n-   Title\u003cbr/\u003e\n-   Description\u003cbr/\u003e\n-   CreationDate\u003cbr/\u003e\n-   Status (e.g., Pending, Completed, In Progress)\n\n\n## API Endpoints :\n\nPOST /todotask/addnewtask: Add a new task to Database.\u003cbr/\u003e\nGET /todotask/getalltask: Retrieve a list of all tasks from Database.\u003cbr/\u003e\nGET /todotask/getonetask/:ID Retrieve a specific task by task-ID.\u003cbr/\u003e\nPUT /todotask/updatetask/:ID Update a specific task by task-ID.\u003cbr/\u003e\nDELETE /todotask/deletetask/:ID Delete a specific task by task-ID.\u003cbr/\u003e\n\n\n## Authentication Endpoints \n\nPOST /user/register: Register a new user.\u003cbr/\u003e\nPOST /user/login: Authenticate and login a user.\u003cbr/\u003e\nPOST /user/logout: Logout a user from application.\u003cbr/\u003e\n\n## User Endpoints\n\nGET /user/get: Get user information from Database.\u003cbr/\u003e\nPATCH /user/update : Update user informations. \u003cbr/\u003e\nDELETE /user/delete : Delete user Account. \u003cbr/\u003e\n\n## Authentication:\n\nTo use authentication, you must register and log in to manage tasks. Protected endpoints require authentication which is being handle by JWT authentication.\n\n## Error Handling\n\nAppropriate HTTP status codes and error messages will be returned in case of errors occurs during requests.\n\n## Logging \n\nAPI requests and responses is being logged into a apilogs.txt file using which we can track all requests.\n\n## Rate Limiting \n\nRate limiting is applied to restrict the number of requests from clients within a specified time period so our server won't get overloaded by too many requests.\n\n\u003ch1 align=\"center\"\u003eThank You.💖\u003c/h1\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fniteshthori24198%2Ftask-management-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fniteshthori24198%2Ftask-management-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fniteshthori24198%2Ftask-management-app/lists"}