{"id":20181905,"url":"https://github.com/saurabhkumarr99/task-manger","last_synced_at":"2026-04-12T06:31:08.027Z","repository":{"id":226901013,"uuid":"769920891","full_name":"saurabhkumarr99/Task-Manger","owner":"saurabhkumarr99","description":" This application serves as a platform where users can manage their tasks efficiently. Users can create, update, delete, and view tasks using this application","archived":false,"fork":false,"pushed_at":"2024-03-10T13:24:03.000Z","size":6187,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-13T17:24:31.445Z","etag":null,"topics":["expressjs","jest","nodejs","postgresql","superset"],"latest_commit_sha":null,"homepage":"","language":"HTML","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/saurabhkumarr99.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}},"created_at":"2024-03-10T12:46:21.000Z","updated_at":"2024-03-10T12:50:07.000Z","dependencies_parsed_at":"2024-03-10T14:02:05.414Z","dependency_job_id":null,"html_url":"https://github.com/saurabhkumarr99/Task-Manger","commit_stats":null,"previous_names":["saurabhkumarr99/task-manger"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saurabhkumarr99%2FTask-Manger","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saurabhkumarr99%2FTask-Manger/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saurabhkumarr99%2FTask-Manger/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saurabhkumarr99%2FTask-Manger/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/saurabhkumarr99","download_url":"https://codeload.github.com/saurabhkumarr99/Task-Manger/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241616687,"owners_count":19991543,"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":["expressjs","jest","nodejs","postgresql","superset"],"created_at":"2024-11-14T02:37:07.822Z","updated_at":"2025-12-31T01:03:37.930Z","avatar_url":"https://github.com/saurabhkumarr99.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Task Manager\n\n## Description\n\nWelcome to the Task Manager! This application serves as a platform where users can manage their tasks efficiently. Users can create, update, delete, and view tasks using this application. It provides a user-friendly interface for organizing tasks and staying productive.\n\n## Technologies Used\n\n- Node.js\n- Express.js\n- PostgreSQL\n- Jest\n- Supertest\n\n## Project Links\n\n\n- GitHub: [Task Manager](https://github.com/saurabhkumarr99/Task-Manger)\n\n\n## Table of Contents\n\n- [Features](#features)\n- [Getting Started](#getting-started)\n- [Usage](#usage)\n- [API Endpoint](#APIEndpoints)\n- [Components Structure](#components-structure)\n- [Screenshots](#screenshots)\n- [Author](#author)\n\n## Features\n\n\n- **User Authentication:** Users can register and log in to manage their tasks securely.\n- **Task Management:** Users can create, update, delete, and view tasks.\n- **RESTful API:** Provides API endpoints for CRUD operations on tasks.\n- **Database Integration:** Utilizes PostgreSQL to store task data.\n- **Unit Testing:** Jest framework is used for unit testing with full test coverage.\n- **Integration Testing:** Supertest library is used for testing API endpoints.\n- **User-Friendly Interface:** Offers an intuitive interface for task management.\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js and npm (Node Package Manager) installed on your computer.\n- PostgreSQL installed locally or remotely.\n\n\nFollow these steps to run the IPO Tracker App locally:\n\n1. **Unzip the Task Manager:**\n\n2. **Navigate to the project directory:**\n\n   ```bash\n   cd Task Manager\n   ``` \n\n2. **Install Dependencies:**\n\n   ```bash\n   npm install\n   ``` \n\n3. **DB Quries:**\n\n   ```bash\n   CREATE DATABASE task_manager;\n\n   CREATE TABLE users (\n    id SERIAL PRIMARY KEY,\n    username VARCHAR(255) NOT NULL,\n    email VARCHAR(255) NOT NULL,\n    password VARCHAR(255) NOT NULL\n   );\n\n   CREATE TABLE tasks (\n    id SERIAL PRIMARY KEY,\n    title VARCHAR(255) NOT NULL,\n    description TEXT,\n    user_id INTEGER REFERENCES users(id)\n   );\n\n   ``` \n\n4. **Run:**\n\n - `Start Project`\n   ```bash\n      node app.js\n   ``` \n\n - `Test Project`\n   ```bash\n      npm test\n   ``` \n\n - `Test Coverage`\n   ```bash\n      npm run coverage\n   ``` \n\n## Usage\n\n- **User Registration:** Users can register for an account using their email address and password.\n- **User Login:** Registered users can log in to their accounts securely.\n- **Task Creation:** Authenticated users can create new tasks by providing a title and description.\n- **Task Update:** Users can update existing tasks by modifying their title and description.\n- **Task Deletion:** Users can delete unwanted tasks from their task list.\n- **Task Viewing:** Users can view a list of all tasks they have created.\n\n## API Endpoints\n\n### Users\n\n- **POST /api/users/register:** Register a new user.\n- **POST /api/users/login:** Log in an existing user.\n\n### Tasks\n\n- **GET /api/tasks:** Get all tasks.\n- **GET /api/tasks/:id:** Get a specific task by ID.\n- **POST /api/tasks:** Create a new task.\n- **PUT /api/tasks/:id:** Update an existing task.\n- **DELETE /api/tasks/:id:** Delete a task by ID.\n\n## Code Structure\n\nThe project follows a structured directory layout for better organization:\n\n- **api/**\n- **coverage/**\n- **ScreenShots/**\n- **App.js**\n- **README.md**\n\n## Author\n\n- SAURABH KUMAR RAI","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaurabhkumarr99%2Ftask-manger","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsaurabhkumarr99%2Ftask-manger","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaurabhkumarr99%2Ftask-manger/lists"}