{"id":27288381,"url":"https://github.com/gauravkumar1741/student_management_workbench","last_synced_at":"2026-04-30T10:02:46.039Z","repository":{"id":286267889,"uuid":"960902652","full_name":"Gauravkumar1741/student_management_workbench","owner":"Gauravkumar1741","description":"The Student Management System is a MySQL-based web application designed to manage student records efficiently. It provides features to add, edit, view, and delete student data through a user-friendly interface. The backend is powered by Node.js with Express.js, and the frontend is built using HTML, CSS, and JavaScript with a responsive design ","archived":false,"fork":false,"pushed_at":"2025-04-05T11:18:58.000Z","size":1472,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-11T20:48:55.288Z","etag":null,"topics":["mysql","mysqlworkbench","sql"],"latest_commit_sha":null,"homepage":"https://student-management-workbench.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/Gauravkumar1741.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":"2025-04-05T10:12:00.000Z","updated_at":"2025-04-05T16:32:56.000Z","dependencies_parsed_at":"2025-04-05T11:28:19.675Z","dependency_job_id":"cbc107a0-d288-411c-905c-ace680a49006","html_url":"https://github.com/Gauravkumar1741/student_management_workbench","commit_stats":null,"previous_names":["gauravkumar1741/student_management_workbench"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Gauravkumar1741/student_management_workbench","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Gauravkumar1741%2Fstudent_management_workbench","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Gauravkumar1741%2Fstudent_management_workbench/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Gauravkumar1741%2Fstudent_management_workbench/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Gauravkumar1741%2Fstudent_management_workbench/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Gauravkumar1741","download_url":"https://codeload.github.com/Gauravkumar1741/student_management_workbench/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Gauravkumar1741%2Fstudent_management_workbench/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32460781,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T22:27:22.272Z","status":"online","status_checked_at":"2026-04-30T02:00:05.929Z","response_time":57,"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":["mysql","mysqlworkbench","sql"],"created_at":"2025-04-11T20:46:11.639Z","updated_at":"2026-04-30T10:02:46.002Z","avatar_url":"https://github.com/Gauravkumar1741.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🎓 Student Management System\n\nThe **Student Management System** is a web app for managing student records with features to add, edit, view, and delete student data, using a **MySQL database** and responsive design.\n\n---\n### Step 2: Initialize the project\n\nNow, let's set up the project files.\n\n1. Open a terminial and create a new project directory:\n\n   ```bash\n   mkdir student-management\n   cd student-management\n   ```\n2. Initialize a new Node.js project by running:\n ```bash\n  npm init -y\n```\n3. Install the required dependencies:\n ```bash\nnpm install express mysql\n\nnpm install cors\n```\n4. To start Express server\n   ```bash\n   node server.js\n   ```\n#### node server.js is how you launch your backend server to make your web app run locally. Without this, the server-side (API, database handling, etc.) won’t work.\n\n## You are telling Node.js to execute your server.js file, which:\n\nStarts your Express server.\n\nListens for HTTP requests on a port (like 3000 or 5500).\n\nHandles all the backend functionality — like:\n\nGetting data from the MySQL database,\n\nInserting new records,\n\nUpdating or deleting student information,\n\nServing your frontend files (index.html, CSS, JS, etc.).  \n## ✨ Features\n\n- 📥 Add new student records\n- ✏️ Edit existing student information\n- 👀 View student details in a structured table\n- 🗑️ Delete student records\n- 🔄 Responsive UI for better user experience\n- 🔐 Backend integration with MySQL for secure data handling\n\n---\n\n## 💻 Technologies Used\n\n### 🖥️ Frontend\n- HTML5  \n- CSS3  \n- JavaScript (Vanilla)  \n- Fetch API  \n\n### 🗄️ Backend\n- Node.js  \n- Express.js  \n- MySQL  \n- MySQL Workbench  \n\n### 🧰 Tools \u0026 Middleware\n- Body-Parser - Middleware to parse incoming request bodies in Express \n- CORS  - Middleware to handle Cross-Origin Resource Sharing\n- Git \u0026 GitHub   \n\n---\n\n## 🏁 How to Run\n\n1. **Clone the repository**\n   ```bash\n   git clone https://github.com/Gauravkumar1741/student_management_workbench.git\n\n![image alt](https://github.com/Gauravkumar1741/student_management_workbench/blob/b92f537acffe509cd23e01b36ec1c5ed8193a7eb/first_page.png)\n\n![image alt](https://github.com/Gauravkumar1741/student_management_workbench/blob/9c6edfbe7ee132833b644140c0b4ea59199e303d/second_page.png)   \n\n![image alt](https://github.com/Gauravkumar1741/student_management_workbench/blob/12f3a43b20b36a2ec3277316bc96b19c344457fc/third_page.png)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgauravkumar1741%2Fstudent_management_workbench","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgauravkumar1741%2Fstudent_management_workbench","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgauravkumar1741%2Fstudent_management_workbench/lists"}