This a Library Management System comprised of a Client app and an Admin app.
This was the term project of BUET Level 2 Term 2 of Database Course (CSE 216).
- NodeJs and ExpressJS (For Backend)
- ReactJS (Client App Frontend)
- HTML, CSS, Bootstrap (Admin App Frontend)
- Oracle 19c (Database)
The database used in this app is Oracle 19c
Database. If you don't have Oracle installed in your system, you need to install it first to run the app in your system. To install Oracle, you can follow the given link below:
Oracle Installation Guideline for Windows 10
After completing the installation, you will need to setup the database schema. You can create your own schema and provide the credentials into the serverInformation.js
file located in the /server directory.
Run the snippets below in SQL Plus
while being connected as sysdba
.
CREATE USER c##brightmate_library IDENTIFIED BY root;
GRANT CREATE SESSION TO c##brightmate_library;
GRANT ALL PRIVILEGES TO c##brightmate_library;
#to your schema by providing these credentials:
connect c##brightmate_library;
password: root
In this way, your schema will be ready to hold the database tables. The SQL Dump file is provided in the root directory. Import them into your newly created schema.
For database creation and table configuration, we have used Navicat Premium 16
.
- Install Node on your device
- Clone the repository
Install all the dependencies from package.json
cd
toserver
directory
npm i
npm install
Start the Admin app
npm start
Goto
http://localhost:5000/adminPanel
cd
toclient
directory
npm i
npm install
Start the client app
npm start
The client app will automatically launch at http://localhost:3000/
If not starting, goto
http://localhost:3000
- Multi-Threaded user support
- Secured account creation for readers
- Book List
- Magazine List
- Book Rent
- Live Search
- Search by Book
- Search by Author
- Search by Genre
- Search by Year published
- Filter
- Filter by Author
- Filter by Genre
- User Dashboard
- User Details
- Update user Details
- Fine History
- Rental History
- Log In / Log Out - only Admins, Librarians & Library Assistants have access to Admin site.
- Books
- See All Books List
- Add New Book
- Add Copies of an Edition
- Edit Book Information
- Search Book
- Magazine
- See All Magazines List
- Add New Magazine
- Edit Magazine Information
- Authors
- See All Authors List
- Add New Author
- Edit Author Information
- Search Author
- Publishers
- See All Publishers List
- Add New Publisher
- Edit Publisher Information
- Rental History
- See Rental History List
- Return Book
- Dues
- See Due List
- Clear Due
- Employee
- See All Employees List
- Add Employee
- Genre
- See Genre List
- Add New Genre