{"id":17972487,"url":"https://github.com/utsavbajracharya/book-inventory-system","last_synced_at":"2026-04-07T20:32:37.976Z","repository":{"id":259499505,"uuid":"878023604","full_name":"UtsavBajracharya/Book-Inventory-System","owner":"UtsavBajracharya","description":"An inventory management system for books.","archived":false,"fork":false,"pushed_at":"2024-10-27T12:25:43.000Z","size":1084,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-09T10:30:51.464Z","etag":null,"topics":["bootstrap","expressjs","mysql","node-js","reactjs"],"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/UtsavBajracharya.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-10-24T16:36:33.000Z","updated_at":"2024-10-27T12:25:47.000Z","dependencies_parsed_at":"2024-12-17T01:11:51.703Z","dependency_job_id":"f747de18-a387-4e66-babc-93f00403ee32","html_url":"https://github.com/UtsavBajracharya/Book-Inventory-System","commit_stats":null,"previous_names":["utsavbajracharya/book-inventory-system"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UtsavBajracharya%2FBook-Inventory-System","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UtsavBajracharya%2FBook-Inventory-System/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UtsavBajracharya%2FBook-Inventory-System/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UtsavBajracharya%2FBook-Inventory-System/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/UtsavBajracharya","download_url":"https://codeload.github.com/UtsavBajracharya/Book-Inventory-System/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247092374,"owners_count":20882217,"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","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":["bootstrap","expressjs","mysql","node-js","reactjs"],"created_at":"2024-10-29T16:19:10.885Z","updated_at":"2026-04-07T20:32:37.938Z","avatar_url":"https://github.com/UtsavBajracharya.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Book-Inventory-Management-System\n\nBook Inventory Management System is a web application that manages and organizes book records. Users can add, filter, view, and export book data in CSV and JSON. this application has interfaces with different components like adding books, filtering and viewing the book list, and exporting the data.\n\n#Technologies Used\n- Frontend: React, Bootstrap, CSS\n- Backend: Node.js, Express\n- Database: MySQL (with Sequelize ORM)\n\n#Features\n- Add Book: Add new books to the inventory with details like title, author, genre, and ISBN.\n- Filter Books: Filter the list of books based on various attributes (e.g., genre, author, date).\n- Books List: Display a table of books in the inventory.\n- Export buttons: Export the book list to CSV or JSON formats.\n- Responsive Design: Optimized for desktop and mobile devices.\n\n#Requirements\n\n- Download and install Node.js from https://nodejs.org/en\n- Download MySQL from https://dev.mysql.com/downloads/mysql/\n\n\nClone this project by running the command - git clone https://github.com/UtsavBajracharya/Book-Inventory-System in the command prompt\n\n#Installation Steps\n\n1. Backend Setup\nIn the backend, we use Node.js with Express.js for server functionality, Sequelize as the ORM, and dotenv for environment variables.\n\nInstall the following dependencies for the backend:\nNavigate to the backend folder in your project and run the following commands:\n\n- cd backend\n- npm install express mysql2 sequelize sequelize-cli dotenv cors\n\n\n2. Frontend Setup\nWe use React, Bootstrap for UI, and Axios on the front end to make HTTP requests and connect them to the backend API.\n\nInstall the following dependencies for the frontend:\nNavigate to the frontend folder in your project and run the following commands:\n\n- cd frontend\n- npm install react-bootstrap bootstrap Axios\n\n#Configuration\n\nMySQL Database Setup\n\nCreate a MySQL database for the application:\n\n- SQL query to create the database:\n\nCREATE DATABASE book_inventory;\n\n- SQL query to create a table: \n\nCREATE TABLE Books (\n  id INT AUTO_INCREMENT PRIMARY KEY,\n  title VARCHAR(255) NOT NULL,\n  author VARCHAR(255) NOT NULL,\n  genre VARCHAR(100),\n  publication_date DATE,\n  isbn VARCHAR(20) UNIQUE NOT NULL\n);\n\n![image](https://github.com/user-attachments/assets/d326442f-6231-4ec7-bb3a-6192d7ec942b)\n\n\n#Run the Application\n\nStart the Backend Server\nGo to the backend folder:\n\n- npm start\n- The backend will be running on http://localhost:4000.\n\n![image](https://github.com/user-attachments/assets/ebc5e1f0-e294-41b4-a775-e8b2f6390166)\n\n\nStart the Frontend Server\nGo to the frontend folder:\n\n- npm start\n- The front end will be running on http://localhost:3000.\n\n![image](https://github.com/user-attachments/assets/5105daaf-30b6-4190-bf49-75f39a08c468)\n\n\n#Add Book\n\n![image](https://github.com/user-attachments/assets/448ab36c-aa0b-4454-832e-e5c9777d585d)\n\n\n#Book List\n\n![image](https://github.com/user-attachments/assets/ec366527-0490-4998-a8d2-eed4deb97ac0)\n\n\n#Filter Books\n\n![image](https://github.com/user-attachments/assets/fe7944e3-add2-4f57-8e05-d7fa0c472f77)\n\n\n#Download as CSV\n\n![image](https://github.com/user-attachments/assets/5911b4d1-2237-45b2-a0b8-44ce0e6a26a6)\n\n\n#Download as JSON\n\n![image](https://github.com/user-attachments/assets/56147327-ccf3-419a-8b4b-800127f0bf5c)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Futsavbajracharya%2Fbook-inventory-system","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Futsavbajracharya%2Fbook-inventory-system","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Futsavbajracharya%2Fbook-inventory-system/lists"}