{"id":31824402,"url":"https://github.com/codeandwander/task-management-api-50","last_synced_at":"2025-10-11T15:23:18.956Z","repository":{"id":310395152,"uuid":"1039694645","full_name":"codeandwander/task-management-api-50","owner":"codeandwander","description":"Autonomous build: REST API with Express for task CRUD operations","archived":false,"fork":false,"pushed_at":"2025-08-17T19:35:02.000Z","size":15,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-17T21:22:55.610Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/codeandwander.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-08-17T19:34:18.000Z","updated_at":"2025-08-17T19:35:05.000Z","dependencies_parsed_at":"2025-08-17T21:22:57.122Z","dependency_job_id":"a6e341df-db58-4f28-9745-c38f803339f8","html_url":"https://github.com/codeandwander/task-management-api-50","commit_stats":null,"previous_names":["codeandwander/task-management-api-50"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/codeandwander/task-management-api-50","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeandwander%2Ftask-management-api-50","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeandwander%2Ftask-management-api-50/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeandwander%2Ftask-management-api-50/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeandwander%2Ftask-management-api-50/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codeandwander","download_url":"https://codeload.github.com/codeandwander/task-management-api-50/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeandwander%2Ftask-management-api-50/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279007596,"owners_count":26084333,"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","status":"online","status_checked_at":"2025-10-11T02:00:06.511Z","response_time":55,"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":[],"created_at":"2025-10-11T15:23:16.002Z","updated_at":"2025-10-11T15:23:18.950Z","avatar_url":"https://github.com/codeandwander.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Task Management API\n\n## Description\n\nThe Task Management API is a RESTful API built using Node.js and Express. It provides endpoints for creating, reading, updating, and deleting tasks. Each task has a title, description, status, and due date, and the data is exchanged in JSON format.\n\n## Installation\n\n1. Clone the repository:\n```\ngit clone https://github.com/your-username/task-management-api.git\n```\n\n2. Install dependencies:\n```\ncd task-management-api\nnpm install\n```\n\n3. Start the server:\n```\nnpm start\n```\n\nThe API will be running on `http://localhost:3000`.\n\n## Endpoints\n\n### Create a Task\n**Endpoint:** `POST /tasks`\n**Request Body:**\n```json\n{\n  \"title\": \"Finish project proposal\",\n  \"description\": \"Write up the project proposal and send it to the client\",\n  \"status\": \"To Do\",\n  \"dueDate\": \"2023-05-15\"\n}\n```\n**Response:**\n```json\n{\n  \"id\": \"1\",\n  \"title\": \"Finish project proposal\",\n  \"description\": \"Write up the project proposal and send it to the client\",\n  \"status\": \"To Do\",\n  \"dueDate\": \"2023-05-15\"\n}\n```\n\n### Get All Tasks\n**Endpoint:** `GET /tasks`\n**Response:**\n```json\n[\n  {\n    \"id\": \"1\",\n    \"title\": \"Finish project proposal\",\n    \"description\": \"Write up the project proposal and send it to the client\",\n    \"status\": \"To Do\",\n    \"dueDate\": \"2023-05-15\"\n  },\n  {\n    \"id\": \"2\",\n    \"title\": \"Implement task search\",\n    \"description\": \"Add a search feature to the tasks page\",\n    \"status\": \"In Progress\",\n    \"dueDate\": \"2023-04-30\"\n  }\n]\n```\n\n### Get a Task\n**Endpoint:** `GET /tasks/{id}`\n**Response:**\n```json\n{\n  \"id\": \"1\",\n  \"title\": \"Finish project proposal\",\n  \"description\": \"Write up the project proposal and send it to the client\",\n  \"status\": \"To Do\",\n  \"dueDate\": \"2023-05-15\"\n}\n```\n\n### Update a Task\n**Endpoint:** `PUT /tasks/{id}`\n**Request Body:**\n```json\n{\n  \"title\": \"Finish project proposal\",\n  \"description\": \"Write up the project proposal and send it to the client\",\n  \"status\": \"In Progress\",\n  \"dueDate\": \"2023-05-15\"\n}\n```\n**Response:**\n```json\n{\n  \"id\": \"1\",\n  \"title\": \"Finish project proposal\",\n  \"description\": \"Write up the project proposal and send it to the client\",\n  \"status\": \"In Progress\",\n  \"dueDate\": \"2023-05-15\"\n}\n```\n\n### Delete a Task\n**Endpoint:** `DELETE /tasks/{id}`\n**Response:** No content\n\n## User Guide\n\n1. To create a new task, send a `POST` request to `/tasks` with the task details in the request body.\n2. To view all tasks, send a `GET` request to `/tasks`.\n3. To view a specific task, send a `GET` request to `/tasks/{id}`.\n4. To update a task, send a `PUT` request to `/tasks/{id}` with the updated task details in the request body.\n5. To delete a task, send a `DELETE` request to `/tasks/{id}`.\n\n## API Documentation\n\nFor detailed API documentation, please refer to the [Postman collection](https://www.getpostman.com/collections/abc123def456).\n\n## Contributing\n\nIf you would like to contribute to this project, please follow these steps:\n\n1. Fork the repository.\n2. Create a new branch for your feature or bug fix.\n3. Make your changes and commit them.\n4. Push your changes to your forked repository.\n5. Submit a pull request to the main repository.\n\n## License\n\nThis project is licensed under the [MIT License](LICENSE).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodeandwander%2Ftask-management-api-50","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodeandwander%2Ftask-management-api-50","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodeandwander%2Ftask-management-api-50/lists"}