{"id":20597324,"url":"https://github.com/dheeraj8601/crud-management","last_synced_at":"2026-04-12T03:37:46.928Z","repository":{"id":217641607,"uuid":"744435493","full_name":"Dheeraj8601/CRUD-Management","owner":"Dheeraj8601","description":"CRUD_APP: User Management System using Node.js, Express, and MongoDB. Allows creating, updating, and deleting user records. Front-end rendered with EJS, styled with CSS.","archived":false,"fork":false,"pushed_at":"2024-01-17T09:50:26.000Z","size":32,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-27T06:26:15.729Z","etag":null,"topics":["css","ejs","expressjs","nodejs"],"latest_commit_sha":null,"homepage":"","language":"EJS","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/Dheeraj8601.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}},"created_at":"2024-01-17T09:46:37.000Z","updated_at":"2024-01-17T09:47:36.000Z","dependencies_parsed_at":"2024-01-17T17:26:24.828Z","dependency_job_id":"f7730c76-5fd0-494a-95f7-adccdc817881","html_url":"https://github.com/Dheeraj8601/CRUD-Management","commit_stats":null,"previous_names":["dheeraj8601/crud-management"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Dheeraj8601/CRUD-Management","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dheeraj8601%2FCRUD-Management","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dheeraj8601%2FCRUD-Management/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dheeraj8601%2FCRUD-Management/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dheeraj8601%2FCRUD-Management/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Dheeraj8601","download_url":"https://codeload.github.com/Dheeraj8601/CRUD-Management/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dheeraj8601%2FCRUD-Management/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31703501,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-11T21:17:31.016Z","status":"online","status_checked_at":"2026-04-12T02:00:06.763Z","response_time":58,"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":["css","ejs","expressjs","nodejs"],"created_at":"2024-11-16T08:21:47.910Z","updated_at":"2026-04-12T03:37:46.896Z","avatar_url":"https://github.com/Dheeraj8601.png","language":"EJS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CRUD Application: User Management System\r\n\r\nThis CRUD application is a User Management System built using Node.js, Express.js, and MongoDB. It allows users to perform CRUD (Create, Read, Update, Delete) operations on user records through a web interface.\r\n\r\n## Project Structure:\r\n\r\n```plaintext\r\n|-- node_modules\r\n|-- server\r\n|   |-- controller\r\n|   |   |-- controller.js\r\n|   |-- database\r\n|   |   |-- connection.js\r\n|   |-- model\r\n|   |   |-- model.js\r\n|   |-- routes\r\n|   |   |-- router.js\r\n|   |-- services\r\n|       |-- render.js\r\n|-- views\r\n|   |-- include\r\n|   |   |-- _footer.ejs\r\n|   |   |-- _form.ejs\r\n|   |   |-- _header.ejs\r\n|   |   |-- _show.ejs\r\n|   |   |-- indexClient.js\r\n|   |   |-- style.css\r\n|   |-- add_user.ejs\r\n|   |-- index.ejs\r\n|   |-- update_user.ejs\r\n|-- config.env\r\n|-- package-lock.json\r\n|-- package.json\r\n|-- server.js\r\n```\r\n\r\n\r\n## Technologies Used:\r\n\r\n- **Node.js**: A JavaScript runtime for building server-side applications.\r\n- **Express.js**: A web application framework for Node.js, providing a robust set of features.\r\n- **MongoDB**: A NoSQL database used for storing user records.\r\n- **EJS**: A template engine for rendering dynamic content in HTML.\r\n- **Mongoose**: An ODM (Object Data Modeling) library for MongoDB and Node.js.\r\n- **Axios**: A promise-based HTTP client for making API requests.\r\n- **CSS**: Styling language for designing the user interface.\r\n\r\n## Setup:\r\n\r\n1. Clone the repository.\r\n2. Install dependencies using `npm install`.\r\n3. Create a MongoDB database and update the `MONGO_URI` in `config.env`.\r\n4. Run the application using `npm start`.\r\n5. Open the application in your browser at `http://localhost:8080`.\r\n\r\n## Features:\r\n\r\n- **Create User**: Add new users with name, email, gender, and status.\r\n- **Read User**: View a list of all users and details of a specific user.\r\n- **Update User**: Modify user information, including name, email, gender, and status.\r\n- **Delete User**: Remove a user from the system.\r\n\r\n## How to Use:\r\n\r\n1. Visit the application at `http://localhost:8080`.\r\n2. Navigate to the \"New User\" page to add a new user.\r\n3. View and manage users on the main page.\r\n4. Click on a user to update or delete their information.\r\n```\r\n\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdheeraj8601%2Fcrud-management","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdheeraj8601%2Fcrud-management","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdheeraj8601%2Fcrud-management/lists"}