{"id":18850519,"url":"https://github.com/manthanank/todos-app","last_synced_at":"2026-04-09T15:50:40.408Z","repository":{"id":251483938,"uuid":"837542661","full_name":"manthanank/todos-app","owner":"manthanank","description":"Todo's App in MEAN Stack","archived":false,"fork":false,"pushed_at":"2024-08-06T09:31:05.000Z","size":491,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-25T04:56:52.294Z","etag":null,"topics":["angular","expressjs","mongodb","nodejs"],"latest_commit_sha":null,"homepage":"https://todos-app-manthanank.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/manthanank.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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},"funding":{"github":["manthanank"],"open_collective":"manthanank","buy_me_a_coffee":"manthanank","patreon":"manthanank"}},"created_at":"2024-08-03T09:35:32.000Z","updated_at":"2025-07-14T04:26:02.000Z","dependencies_parsed_at":"2025-05-23T02:37:51.923Z","dependency_job_id":"1ae69435-923f-478e-828c-8dc7985fd521","html_url":"https://github.com/manthanank/todos-app","commit_stats":null,"previous_names":["manthanank/todos-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/manthanank/todos-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manthanank%2Ftodos-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manthanank%2Ftodos-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manthanank%2Ftodos-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manthanank%2Ftodos-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/manthanank","download_url":"https://codeload.github.com/manthanank/todos-app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manthanank%2Ftodos-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":281584982,"owners_count":26526171,"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-29T02:00:06.901Z","response_time":59,"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":["angular","expressjs","mongodb","nodejs"],"created_at":"2024-11-08T03:29:46.395Z","updated_at":"2025-10-29T08:07:13.655Z","avatar_url":"https://github.com/manthanank.png","language":"TypeScript","funding_links":["https://github.com/sponsors/manthanank","https://opencollective.com/manthanank","https://buymeacoffee.com/manthanank","https://patreon.com/manthanank"],"categories":[],"sub_categories":[],"readme":"# To-Do's Application\n\nThis is a simple To-do application built using the MEAN stack (MongoDB, Express.js, Angular, Node.js) and styled with Tailwind CSS.\n\n## Table of Contents\n\n- [Features](#features)\n- [Prerequisites](#prerequisites)\n- [Installation](#installation)\n- [Running the Application](#running-the-application)\n- [License](#license)\n\n## Features\n\n- Add new to-dos\n- Mark to-dos as completed\n- Edit to-do titles\n- Delete to-dos\n- Responsive design with Tailwind CSS\n\n## Prerequisites\n\nMake sure you have the following installed:\n\n- Node.js and npm: [Download and Install Node.js](https://nodejs.org/)\n- MongoDB: [Download and Install MongoDB](https://www.mongodb.com/try/download/community)\n- Angular CLI: Install globally using `npm install -g @angular/cli`\n\n## Installation\n\n1. **Clone the repository**:\n\n   ```bash\n   git clone https://github.com/manthanank/todos-app.git\n   cd todos-app\n   ```\n\n2. **Backend setup**:\n\n   Navigate to the `backend` folder and install the dependencies:\n\n   ```bash\n   cd backend\n   npm install\n   ```\n\n3. **Frontend setup**:\n\n   Navigate to the `frontend` folder and install the dependencies:\n\n   ```bash\n   cd ..\n   npm install\n   ```\n\n4. **Configure Tailwind CSS**:\n\n   Tailwind CSS should already be configured. If not, follow these steps:\n\n   - Install Tailwind CSS and its dependencies:\n\n     ```bash\n     npm install tailwindcss postcss autoprefixer\n     ```\n\n   - Initialize Tailwind CSS:\n\n     ```bash\n     npx tailwindcss init\n     ```\n\n   - Update `tailwind.config.js`:\n\n     ```javascript\n     /** @type {import('tailwindcss').Config} */\n     module.exports = {\n       content: [\n         \"./src/**/*.{html,ts}\"\n       ],\n       theme: {\n         extend: {},\n       },\n       plugins: [],\n     }\n     ```\n\n   - Create `postcss.config.js`:\n\n     ```javascript\n     module.exports = {\n       plugins: [\n         require('tailwindcss'),\n         require('autoprefixer'),\n       ]\n     }\n     ```\n\n   - Update `src/styles.css`:\n\n     ```css\n     @tailwind base;\n     @tailwind components;\n     @tailwind utilities;\n     ```\n\n## Running the Application\n\n1. **Start the backend server**:\n\n   Navigate to the `backend` folder and start the server:\n\n   ```bash\n   cd backend\n   npm start\n   ```\n\n   The backend server will run on `http://localhost:3000`.\n\n2. **Start the Angular development server**:\n\n   Navigate to the `frontend` folder and start the Angular server:\n\n   ```bash\n   cd ..\n   ng serve\n   ```\n\n   The Angular app will run on `http://localhost:4200`.\n\n## License\n\nThis project is licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanthanank%2Ftodos-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmanthanank%2Ftodos-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanthanank%2Ftodos-app/lists"}