{"id":15175257,"url":"https://github.com/gitcoder052023/todo-app","last_synced_at":"2026-02-06T17:03:07.428Z","repository":{"id":254803007,"uuid":"847583745","full_name":"GitCoder052023/Todo-App","owner":"GitCoder052023","description":"This is a modern Todo app built with Node.js, Express, MongoDB, and Nodemailer. It features user authentication, password reset functionality, and a user-friendly interface.","archived":false,"fork":false,"pushed_at":"2024-10-14T08:52:08.000Z","size":88,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-05T03:31:07.934Z","etag":null,"topics":["css3","html-css-javascript","html5","js","mongodb","nodemailer","todoapp","webapp","website"],"latest_commit_sha":null,"homepage":"","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/GitCoder052023.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-08-26T06:32:38.000Z","updated_at":"2024-10-20T13:29:51.000Z","dependencies_parsed_at":"2024-08-26T08:06:31.991Z","dependency_job_id":"6ed0439f-61f3-48f6-abcd-a329f53d2b7b","html_url":"https://github.com/GitCoder052023/Todo-App","commit_stats":{"total_commits":18,"total_committers":2,"mean_commits":9.0,"dds":0.2222222222222222,"last_synced_commit":"e0134bf89a9a1791b50bcb54bceb39e353f78025"},"previous_names":["gitcoder052023/todo-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/GitCoder052023/Todo-App","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GitCoder052023%2FTodo-App","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GitCoder052023%2FTodo-App/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GitCoder052023%2FTodo-App/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GitCoder052023%2FTodo-App/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GitCoder052023","download_url":"https://codeload.github.com/GitCoder052023/Todo-App/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GitCoder052023%2FTodo-App/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29169384,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-06T16:33:35.550Z","status":"ssl_error","status_checked_at":"2026-02-06T16:33:30.716Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["css3","html-css-javascript","html5","js","mongodb","nodemailer","todoapp","webapp","website"],"created_at":"2024-09-27T12:20:55.457Z","updated_at":"2026-02-06T17:03:07.388Z","avatar_url":"https://github.com/GitCoder052023.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"﻿## Modern Todo App with User Authentication\r\n\r\nThis is a modern Todo app built with Node.js, Express, MongoDB, and Nodemailer. It features user authentication, password reset functionality, and a user-friendly interface.\r\n\r\n**Features:**\r\n\r\n- **User Authentication:**\r\n    - Sign up and register new users.\r\n    - Securely store user passwords using bcrypt.\r\n    - Login using email and password.\r\n    - Logout functionality.\r\n- **Password Reset:**\r\n    - Send secure OTPs via email using Nodemailer.\r\n    - Verify OTPs to confirm user identity.\r\n    - Reset user passwords after verification.\r\n- **Todo List:**\r\n    - Add new todo items.\r\n    - Mark todo items as completed.\r\n    - Delete todo items.\r\n    - Store todo data in MongoDB.\r\n    - Search for specific items.\r\n    - Sort items by various criteria.\r\n- **User-Friendly Interface:**\r\n    - Clean and modern design with a responsive layout.\r\n    - Easy-to-use features for managing todo lists.\r\n\r\n**Dependencies:**\r\n\r\n- `express`: For building the web server.\r\n- `mongodb`: For interacting with the MongoDB database.\r\n- `nodemailer`: For sending emails.\r\n- `bcrypt`: For hashing passwords.\r\n- `crypto`: For generating secure OTPs.\r\n- `zxcvbn`: For password strength checking (used in the password reset page).\r\n\r\n**Running the Application:**\r\n\r\n1. **Install Dependencies:**\r\n   ```bash\r\n   npm install\r\n   ```\r\n\r\n2. **Setup MongoDB:**\r\n   - Ensure MongoDB is running on your machine.\r\n   - Create a database named `todoApp`.\r\n   - create collections named `users`, `otps`, `todos`.\r\n\r\n3. **Replace Email Credentials:**\r\n   - In `server.js`, replace `\"REPLACE WITH YOUR OWN EMAIL\"` with your actual email address and `\"REPLACE WITH YOUR OWN APP PASSWORD\"` with your app password for sending emails.\r\n\r\n4. **Run the Server:**\r\n   ```bash\r\n   nodemon main.js\r\n   ```\r\n\r\n   The server will start listening on port 8000.\r\n\r\n5. **Access the App:**\r\n   - Open your browser and navigate to `http://localhost:8000`.\r\n\r\n**Instructions:**\r\n\r\n- The application will guide you through registration, login, and password reset processes.\r\n- Once logged in, you can start adding and managing your todo items.\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgitcoder052023%2Ftodo-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgitcoder052023%2Ftodo-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgitcoder052023%2Ftodo-app/lists"}