{"id":19484292,"url":"https://github.com/dwija12903/to-do-list-app","last_synced_at":"2026-04-11T12:03:24.278Z","repository":{"id":259434000,"uuid":"875967242","full_name":"dwija12903/to-do-list-app","owner":"dwija12903","description":null,"archived":false,"fork":false,"pushed_at":"2024-10-24T12:06:40.000Z","size":252,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-25T18:31:24.070Z","etag":null,"topics":["bycrypt","expressjs","jwt","mongodb","nodejs","reactjs","validation"],"latest_commit_sha":null,"homepage":"https://to-do-app-dwija12.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/dwija12903.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":"2024-10-21T07:17:29.000Z","updated_at":"2024-10-24T12:06:44.000Z","dependencies_parsed_at":"2024-10-25T15:56:17.070Z","dependency_job_id":null,"html_url":"https://github.com/dwija12903/to-do-list-app","commit_stats":null,"previous_names":["dwija12903/to-do-list-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dwija12903/to-do-list-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dwija12903%2Fto-do-list-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dwija12903%2Fto-do-list-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dwija12903%2Fto-do-list-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dwija12903%2Fto-do-list-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dwija12903","download_url":"https://codeload.github.com/dwija12903/to-do-list-app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dwija12903%2Fto-do-list-app/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267236734,"owners_count":24057656,"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-07-26T02:00:08.937Z","response_time":62,"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":["bycrypt","expressjs","jwt","mongodb","nodejs","reactjs","validation"],"created_at":"2024-11-10T20:20:10.626Z","updated_at":"2026-04-11T12:03:19.257Z","avatar_url":"https://github.com/dwija12903.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 📝 To-Do List App\n\n## 🎯 Overview\nThe **To-Do List App** is a full-stack application designed to help users manage their tasks effectively. With a user-friendly interface, users can create, update, delete, and filter tasks while keeping track of their priorities and due dates.\n\n---\n\n## 🚀 Features\n- **User Authentication**: Secure login and registration using JWT tokens. 🔒\n- **Task Management**: Add, edit, delete, and toggle the completion status of tasks. ✅\n- **Priority Levels**: Assign tasks a priority (low, medium, high) to manage workload effectively. 📊\n- **Due Dates**: Set and track due dates for your tasks. 📅\n- **Search and Filter**: Quickly find tasks with a search bar and filter by completion status. 🔍\n\n---\n\n## 📦 Tech Stack\n- **Frontend**: \n  - **React**: A JavaScript library for building user interfaces.\n  - **Tailwind CSS**: A utility-first CSS framework for styling components.\n  - **Axios**: A promise-based HTTP client for making requests to the backend.\n  \n- **Backend**: \n  - **Node.js**: JavaScript runtime for server-side programming.\n  - **Express.js**: A web application framework for Node.js.\n  - **MongoDB**: NoSQL database for storing user and task data.\n  - **Mongoose**: ODM (Object Data Modeling) library for MongoDB and Node.js.\n  - **JWT (JSON Web Tokens)**: For secure user authentication.\n  \n- **Development Tools**: \n  - **Visual Studio Code**: Code editor for development.\n  - **Postman**: API testing tool for checking endpoints.\n  - **dotenv**: For managing environment variables.\n\n---\n\n## 🛠 Installation\n\n### Prerequisites\nEnsure you have the following installed on your machine:\n- [Node.js](https://nodejs.org/en/download/) (v14 or higher)\n- [MongoDB](https://www.mongodb.com/try/download/community)\n\n### Clone the repository\n1. Open your terminal and run:\n    ```bash\n    git clone https://github.com/dwija12903/to-do-list-app.git\n    cd todo-list-app\n    ```\n\n### Frontend Setup\n1. Navigate to the frontend directory:\n    ```bash\n    cd frontend\n    ```\n2. Install dependencies:\n    ```bash\n    npm install\n    ```\n3. Start the React app:\n    ```bash\n    npm start\n    ```\n\n### Backend Setup\n1. Navigate to the backend directory:\n    ```bash\n    cd backend\n    ```\n2. Install dependencies:\n    ```bash\n    npm install\n    ```\n3. Create a `.env` file in the server directory with the following variables:\n    ```\n    MONGODB_URI=your_mongodb_uri\n    JWT_SECRET=your_jwt_secret\n    PORT = 5000\n    ```\n4. Start the Express server:\n    ```bash\n    node server.js\n    ```\n\n---\n\n## 🌟 Usage\n1. Check MongoDB Status: Before starting, ensure that MongoDB is up and running by visiting this link: [Check MongoDB Status](https://to-do-list-app-lemon-alpha.vercel.app/?vercelToolbarCode=uGkfuxixcO0ZjBF)\n2. Visit the App: Once MongoDB is running, go to the app by visiting: [To-Do List App](https://to-do-app-dwija12.vercel.app/)\n3. Create an Account: Register a new account by clicking the Sign Up button and filling in the required details.\n4. Manage Tasks:\n  - Add new tasks by entering the task details and due date.\n  - Edit existing tasks by clicking the Edit button next to a task.\n  - Delete tasks that are no longer needed.\n  - Toggle the completion status of tasks.\n  - Search \u0026 Filter: Use the search bar to find specific tasks and filter tasks based on their completion status (completed or pending).\n\n---\n\n## 🛠 Challenges and Decisions Made During Development\n\n- **Authentication**: Implementing JWT for user authentication required careful handling of token storage and management. I opted to use local storage to keep it simple, but this decision brought up considerations around token expiration and security.\n  \n- **State Management**: Initially, I considered using Redux for state management but decided to keep the implementation simple with React’s built-in state. This helped reduce complexity and made the app easier to maintain.\n\n- **Responsive Design**: Ensuring that the app was responsive across different devices posed a challenge. I used Tailwind CSS to implement a fluid design, which streamlined the styling process and improved responsiveness.\n\n- **Error Handling**: Implementing comprehensive error handling for both frontend and backend required thorough testing to ensure users received clear feedback during login, task creation, and other operations.\n\n---\n\n## 🐛 Contributing\nContributions are welcome! Please create a pull request or open an issue to discuss changes.\n\n---\n\n## 📫 Contact\nFeel free to reach out to me on [LinkedIn](https://www.linkedin.com/in/dwijapanchal) or via email at [dwija1209@gmail.com].\n\n---\n\nThank you for checking out my project! 😊\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdwija12903%2Fto-do-list-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdwija12903%2Fto-do-list-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdwija12903%2Fto-do-list-app/lists"}