{"id":20424069,"url":"https://github.com/spm999/ai-certs","last_synced_at":"2026-04-02T01:02:55.097Z","repository":{"id":249296181,"uuid":"806105266","full_name":"spm999/Ai-Certs","owner":"spm999","description":"The application supports creating, reading, updating, and deleting (CRUD) tasks. Each task has a title, description, status (e.g., pending, in-progress, completed), and due date.","archived":false,"fork":false,"pushed_at":"2024-07-19T18:10:18.000Z","size":67,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-03T14:36:39.290Z","etag":null,"topics":["cors","expressjs","git","inmemory-db","nodejs","react-router-dom","reactjs","render","rest-api","vercel"],"latest_commit_sha":null,"homepage":"https://ai-certs-steel.vercel.app/","language":"JavaScript","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/spm999.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}},"created_at":"2024-05-26T11:47:39.000Z","updated_at":"2024-07-19T18:12:43.000Z","dependencies_parsed_at":"2024-07-19T23:17:57.716Z","dependency_job_id":"fe85bf95-5743-4539-92b6-eae7756e93ce","html_url":"https://github.com/spm999/Ai-Certs","commit_stats":null,"previous_names":["spm999/ai-certs"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/spm999/Ai-Certs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spm999%2FAi-Certs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spm999%2FAi-Certs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spm999%2FAi-Certs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spm999%2FAi-Certs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/spm999","download_url":"https://codeload.github.com/spm999/Ai-Certs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spm999%2FAi-Certs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31293631,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T21:15:39.731Z","status":"ssl_error","status_checked_at":"2026-04-01T21:15:34.046Z","response_time":53,"last_error":"SSL_read: 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":["cors","expressjs","git","inmemory-db","nodejs","react-router-dom","reactjs","render","rest-api","vercel"],"created_at":"2024-11-15T07:08:35.009Z","updated_at":"2026-04-02T01:02:54.583Z","avatar_url":"https://github.com/spm999.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# To-Do List Application\n\nThis is a simple To-Do List application that allows users to manage their tasks. The application supports creating, reading, updating, and deleting (CRUD) tasks. Each task has a title, description, status (e.g., pending, in-progress, completed), and due date.\n\n## Features\n\n* **Task List Page** : Displays a list of all tasks with their title, status, and due date. Includes buttons for editing and deleting each task, and a button to create a new task.\n* **Task Form Page** : A form for creating and editing tasks with fields for Title, Description, Status, and Due Date. The form is used for both creating a new task and updating an existing task.\n\n## Technologies Used\n\n* **Frontend** : React\n* **Backend** : Node.js with Express\n* **In-Memory Data Storage** : Tasks are stored in-memory on the server\n\n## Getting Started\n\n### Prerequisites\n\n* Node.js and npm installed on your machine.\n\n#### Backend Setup\n\n**Clone the repository** :\n\n```\ngit clone https://github.com/spm999/Ai-Certs\ncd Ai-Certs\ncd server\n\n```\n\n **Install backend dependencies** :\n\n```\nnpm install\n\n```\n\n **Start the backend server** :\n\n```\nnode index.js\n```\n\n##### The backend server will be running at `http://localhost:5000`.\n\n#### Frontend Setup\n\n1. **Navigate to the frontend directory** :\n   ```\n   cd app\n   ```\n2. **Install frontend dependencies** :\n   ```\n   npm install\n   ```\n\n   **3. Start the React application** :\n\n```\n    npm run dev\n```\n\n##### The frontend application will be running at `http://localhost:5173`.\n\n## API Endpoints\n\n1. GET /tasks: Retrieve all tasks.\n2. GET /tasks/ID Retrieve a single task by ID.\n3. POST /tasks: Create a new task.\n4. PUT /tasks/ID Update an existing task by ID.\n5. DELETE /tasks/ID Delete a task by ID.\n\n## Project Structure\n\n```\napp/\n  src/\n    components/\n      TaskList.js       # Component for displaying the list of tasks\n      TaskForm.js       # Component for creating and editing tasks\n    api.js              # API functions to interact with the backend\n    App.js              # Main application component tUsage\n```\n\n```\nserver/\n  index.js              # Backend server and API routes\n```\n\n1. **Viewing Tasks** :\n\n* Visit `http://localhost:5173` to view the list of tasks.\n* Click the \"Create Task\" button to navigate to the task creation form.\n* Click the \"Edit\" button next to a task to navigate to the task editing form.\n\n2. **Creating a Task** :\n\n* Fill out the form with the task details and click \"Save\" to create a new task.\n\n3. **Editing a Task** :\n\n* Modify the task details in the form and click \"Save\" to update the task.\n\n4. **Deleting a Task** :\n\n* Click the \"Delete\" button next to a task to remove it from the list.\n\n## License\n\nThis project is licensed under the MIT License.\n\n## Acknowledgements\n\n* This project was created as a simple demonstration of a full-stack application using React and Node.js.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspm999%2Fai-certs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fspm999%2Fai-certs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspm999%2Fai-certs/lists"}